在 iOS11时,当我们在使用 tableView 进行分组时( style:UITableViewStyleGrouped)会出现 cell 组间距被拉伸的情况,如下图:
决绝方案: 添加一下两个代理方法;
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
return [[UIView alloc] init];
}
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
return [[UIView alloc] init];
}