美文网首页
2022-11-08 UITableView UITableVi

2022-11-08 UITableView UITableVi

作者: 我是小胡胡分胡 | 来源:发表于2022-11-07 15:24 被阅读0次

添加1:

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

添加2:

    if (@available(iOS 11.0, *)) {
        self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
    }
    if (@available(iOS 15.0, *)) {
        self.tableView.sectionHeaderTopPadding = 0.1;
    }

添加3:

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
    return nil;
}

到添加3 才最后解决问题。

相关文章

网友评论

      本文标题:2022-11-08 UITableView UITableVi

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