iOS 使用UITableViewStyleGrouped解决section自带高度

首先创建tableView时设置:
self.tableView.sectionFooterHeight = 0;
self.tableView.sectionHeaderHeight = 0;

设置Header高度,这里注意不能return 0 ,return 0系统会加默认高度
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{

    return 0.1;

}

设置footer高度就上面self.tableView.sectionFooterHeight = 0;方法就可以,用heightForFooterInSection是无效的

你可能感兴趣的:(iOS 使用UITableViewStyleGrouped解决section自带高度)