//设置header高度
-
(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
if(section == 2){
return 50;
}else{
return 1;
}
}
我在使用的时候,只写了头视图高、脚视图高、头视图内容,因为脚视图高度为0,且没有内容,所以我没有写脚视图的内容
但是在模拟器上发现每个section之间都有很宽的空距离,差不多80-100的样子,如下图:
然后我在http://www.jianshu.com/p/7364a11e1fc2这篇文章中发现和我代码的区别就是实现footerView方法,我把它添加上去了
-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
UIView * view=[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 1)];
view.backgroundColor = [UIColor clearColor];
return view;
}
然后就好了,如图: