隐藏UITableView中的最后一个空节标题/页脚

时间:2015-10-28 11:36:15

标签: ios xcode uitableview

有没有办法隐藏最后一节? enter image description here

2 个答案:

答案 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.. 
    }