答案 0 :(得分:1)
从
返回0 - tableView:heightForFooterInSection:
和/或
- tableView:heightForHeaderInSection:
当section
是您要隐藏的部分编号时
答案 1 :(得分:0)
你可以像这样写条件: 在
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
if (indexPath.section ==sectionArray.count-1)
{
//you can set height of header..
}