在創(chuàng)建tableview之前一定要先加這一行代碼
[self.view addSubview:[[UIView alloc] init]];
然后就是設(shè)置header和footer的高度了
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
return 0;
}
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
return CONVER_VALUE(12.0f);
}