美文网首页
iOS tableview 设置 组section 间距

iOS tableview 设置 组section 间距

作者: STONEsh | 来源:发表于2020-01-17 10:56 被阅读0次
_tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStyleGrouped];

iOS开发中, UITableView style 设置为 UITableViewStyleGrouped 样式的时候,间距一般都不是我们想要的,为了自定义section之间的间距可以使用如下两个 UITableViewDelegate 方法:

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
        return 8;
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
       return 0.1;
}

在 iOS11 之前基本就可以了,但是在iOS 11 之后需要再添加如下两个 UITableViewDelegate 方法才可以出效果:

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
return [[UIView alloc]init];
}
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
return [[UIView alloc]init];
}

相关文章

网友评论

      本文标题:iOS tableview 设置 组section 间距

      本文链接:https://www.haomeiwen.com/subject/dedczctx.html