_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];
}
网友评论