- (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
if (section == 0)
return CGFLOAT_MIN;
return tableView.sectionHeaderHeight;
}
返回0原因的UITableView使用默认值。这是无证的行为。如果返回一个非常小的数目,您可以有效地获得一个零高度的头。
参考:http://stackoverflow.com/questions/17699831/how-to-change-height-of-grouped-uitableview-header