删除了Grouped UITableView的保留标题视图边距

时间:2015-06-24 05:07:01

标签: uitableview margin appdelegate

默认情况下,分组表视图的每个部分都有一个保留的垂直边距。我不想要表格视图的页眉视图而是页脚视图,那么如何轻松地删除页边距?

1 个答案:

答案 0 :(得分:0)

覆盖tableview委托的以下方法,直接删除标题视图的边距。

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
    return 0.01; // Removed the section header margin. (couldn't be 0 here, weird)
}