0

这个问题被抛来抛去,没有答案。是的,我们可以“隐藏” viewForFooterInSection 没问题:

在 CustomFooterView.m 中

{

self.hidden = YES;

}

这使页脚不可见,就像使 [UIColor clearColor] 可以工作一样。因此,视图在滚动时仍会推动单元格和标题。

无论是否有单元格,我们都希望在部分之间留出空间。并且只有标题相互推开。动态大小的页脚是要走的路吗?更好的方法?可以禁用页脚的推/拉吗?

提前致谢。

4

1 回答 1

0

我不知道这是否符合您的需求,但是如果您去掉页脚并更改页眉的高度以增加额外的空间怎么办?

   -(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
        CGFloat height;
        switch(section)
        {
            //Keep the first section normal
            case 0:
            {
                height = 44.0;//Normal Height
                break;
            }
            default:{
                height = 88.0;//Extra Space above
            }

        }
        return height;
    }
于 2012-09-13T20:55:39.933 回答