.设置cell高度
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 80;
}
1
2
3
4
2.添加头显示
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
NSDictionary *dic = array[section];
NSString *group = dic[@"Group"];
return group;
}
3.添加脚显示
-(NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
{
NSDictionary *dic = array[section];
NSString *group = dic[@"Group"];
return group;
}