美文网首页
iOS11 cell 间距拉伸问题

iOS11 cell 间距拉伸问题

作者: 明月钓无痕 | 来源:发表于2017-10-09 17:17 被阅读136次

在 iOS11时,当我们在使用 tableView 进行分组时( style:UITableViewStyleGrouped)会出现 cell 组间距被拉伸的情况,如下图:

左为 iOS 11之前,右为 iOS 11之后

决绝方案: 添加一下两个代理方法;

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

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

相关文章

网友评论

      本文标题:iOS11 cell 间距拉伸问题

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