美文网首页
iOS 15 的 UITableView section hea

iOS 15 的 UITableView section hea

作者: 跨端开发 | 来源:发表于2021-09-26 01:52 被阅读0次

iOS 15 的 UITableView又新增了一个新属性:sectionHeaderTopPadding 会给每一个section header 增加一个默认高度,当我们 使用 UITableViewStylePlain 初始化 UITableView的时候,就会发现,系统给section header增高了22像素。

解决办法很简单:

if (@available(iOS 15.0, *)) {
    tableView.sectionHeaderTopPadding = 0;
}

相关文章

网友评论

      本文标题:iOS 15 的 UITableView section hea

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