iOS 15 UITableView SectionHeader多出一块空白

背景:页面细节优化发现TableView列表Cell的间隙变大了,看起来很不协调,Cell设置上背景颜色,再SectionHeader也设置上背景颜色,发现SectionHeader上方多出来了一块空隙。


经过一番各种尝试都无效,最终在搜索出相关文章

附上swift的写法:
1.全局设置

if #available(iOS 15.0, *) {
    UITableView.appearance().sectionHeaderTopPadding = 0
}

2.单个设置

if #available(iOS 15.0, *) {
    _tableView.sectionHeaderTopPadding = 0
}

你可能感兴趣的:(iOS 15 UITableView SectionHeader多出一块空白)