删除了 Grouped UITableView 的保留页眉视图边距

Posted

技术标签:

【中文标题】删除了 Grouped UITableView 的保留页眉视图边距【英文标题】:Removed the reserved header view margin for Grouped UITableView 【发布时间】:2015-06-24 05:07:01 【问题描述】:

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

【问题讨论】:

【参考方案1】:

重写下面tableview的delegate方法,直接去掉header view的margin。

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section

    return 0.01; // Removed the section header margin. (couldn't be 0 here, weird)

【讨论】:

以上是关于删除了 Grouped UITableView 的保留页眉视图边距的主要内容,如果未能解决你的问题,请参考以下文章

如何去掉grouped样式UITableView中cell的边框和背景

Android ListView 风格类似于 iPhone Grouped UITableView

如何在编辑模式下替换 Grouped UITableView 的加号/减号按钮?

UITableView 自己改变样式

UITableView

UITableView 普通禁用粘滞标题 [重复]