最近研究了一些HTML5的基礎,一些C++的基礎,有些冷落了個人iOS技術,以致於最近對於iOS有種沒有信心的感受,因此今天開始迴歸個人iOS核心技術,眼前表現爲回顧iOS技術,以博客的形式,寫總結,好吧,廢話很少說atom
純代碼形式建立:1.建立tableViewspa
2.定義一個自定義Cell代理
3.設置代理orm
4.代理方法的我實現博客
tableView的建立主要有如下步驟:string
1.建立tableView it
- (void)createTableView
{io
//初始化tableView並定義位置,大小。
UITableView * tableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, SCREENWIDTH, SCREENHEIGHT)];table
//設置table代理的數據源和代理爲本身
tableView.delegate =self;
tableView.dataSource = self;class
//爲table 註冊自定義的Cell的類。註冊方法以下
[tableView registerClass:[MyCell class] forCellReuseIdentifier:@"MyCell"];
//加入視圖。
[self.view addSubview:tableView];
}
2.自定義Cell
@interface MyCell : UITableViewCell
@property(nonatomic,strong) UILabel * label;
@property(nonatomic,strong) UIImageView * image;
@end
@implementation MyCell
- (id) initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self =[super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
self.label =[[UILabel alloc]initWithFrame:CGRectMake(0, 0, 20, 30)];
self.image = [[UIImageView alloc]initWithFrame:CGRectMake(20, 30, 50, 50)];
[self.contentView addSubview:self.image];
[self.contentView addSubview:self.label];
}
return self;
}
@end
3.設置代理
@interface MyTableViewController ()<UITableViewDelegate,UITableViewDataSource>
4.代理方法的實現:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 15;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//爲Cell設置重用的ID
MyCell * cell = [tableView dequeueReusableCellWithIdentifier:@"MyCell" forIndexPath:indexPath];
//若是cell沒有才建立
if (cell==nil) {
cell= [[MyCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"MyCell"];
} cell.textLabel.text = [NSString stringWithFormat:@"%ld",(long)indexPath.row]; return cell; }