一,UITableView控件使用必备,红色部分是易错点和难点
首先创建一个项目,要使用UITableView就需要实现协议<UITableViewDataSource>,数据源协议主要完成对tableView外观设置,必须实现的方法有两个:
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
着重理解:UITableViewDataSource是数据源协议,主要控制tableView设置的数据,比如行高,页眉页脚,分组等
1,首先在ViewController里面实例化UITableView
- (void)viewDidLoad
{
[super viewDidLoad];
UITableView *tableView=[[UITableView alloc]initWithFrame:self.view.bounds];
tableView.dataSource=(id)self;
[self.view addSubview:tableView];
// Do any additional setup after loading the view, typically from a nib.
}
2,实现必须的两个方法
这个方法主要实现在每个section里面有几行
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 14;
}
这个是在每行里面创建cell
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
cell.backgroundColor=[UIColor grayColor];
return cell;
}
3,其他常用方法
设置在tableView中有几个section
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 4;
}
这样就完成了一个最简单的tableview
//------------------------------------------------------------------------------------------------------
4,进阶练习
下面的例子中aa,bb数组可以是省份数组,这样就可以对省份进行分组简单应用,本例子简单,一看就应该明白
- (void)viewDidLoad
{
[super viewDidLoad];
//创建两个数组,实际应用中可以是任何数据源,此处为了练习分组
_aa=[NSArray arrayWithObjects:@"11",@"22", nil];
_bb=[NSArray arrayWithObjects:@"QQ",@"DD",@"EE",@"FF", nil];
//首先必须实例化一个tableView对象,然后加入到根视图
_bb=[NSArray arrayWithObjects:@"QQ",@"DD",@"EE",@"FF", nil];
UITableView *tableView=[[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStyleGrouped];这里的style一共有两种格式,另一个是UITableViewStylePlain平铺模式,分组模式一般都是在多个section的时候才使用,运行此程序看看两者的区别
tableView.dataSource=(id)self;//此处是最容易忘记添加的地方,如果没有这个部分的声明,下面的代理方法都没用.
[self.view addSubview:tableView];
// Do any additional setup after loading the view, typically from a nib.
}
//ios系统赋予的内存警告,如果内存不够用的时候会触发此方法
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
//设置tableView中section的个数,也就是分组个数
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 2;
}
//每组的行数
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
//如果是0 section,则在第一部分显示aa数组里的内容
if (section==0) {//如果是第一组,则返回aa数组中的个数
return self.aa.count;
}//如果是1 section,则在第二部分显示bb数组里的内容更
else if(section==1)
return self.bb.count;
return 14;
}
//创建cell,当滚动的时候也会触发此方法,可以动态生成cell,节约系统资源,后面会详解
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
if (indexPath.section==0) {
cell.textLabel.text=self.aa[indexPath.row];
}
else if(indexPath.section==1)cell.textLabel.text=self.bb[indexPath.row];
cell.backgroundColor=[UIColor grayColor];
return cell;
}
@end
运行以上程序查看效果如图:
查看手机会发现很多应用的分组都有标题,如下(阅读列表),还有页脚(使用....)这些都是可以设置的,以上程序运行出来之后,我们来扩展页眉页脚
//此方法返回字符串,这个字符串就是放在页眉部分的字
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
return section==0?@"aa数组内容":@"bb数组内容";
}
//此方法返回字符串,这个字符串就是放在页脚部分的字
-(NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
{
return section==0?@"aa数组页脚":@"bb数组页脚";
}