默认情况下,分组表视图的每个部分都有一个保留的垂直边距。我不想要表格视图的页眉视图而是页脚视图,那么如何轻松地删除页边距?
答案 0 :(得分:0)
覆盖tableview委托的以下方法,直接删除标题视图的边距。
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 0.01; // Removed the section header margin. (couldn't be 0 here, weird)
}