在创建tableview之前一定要先加这一行代码
[self.view addSubview:[[UIView alloc] init]];
然后就是设置header和footer的高度了
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
return 0;
}
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
return CONVER_VALUE(12.0f);
}
网友评论