最近在iOS14上使用 UITableViewHeaderFooterView
设置了背景色
self.contentView.backgroundColor = [UIColor whiteColor];
发现背景色下出现了一根线条
然后查看图层,发现原来 UITableViewHeaderFooterView 层级有所变化
对比iOS14以下,多了一个 UISystemBackgroundView -> UIView , View颜色是灰色,查找一下api,发现iOS14增加了backgroundConfiguration
背景配置方法,如下我们把背景设置为透明
if (@available(iOS 14.0, *)) {
self.backgroundConfiguration = UIBackgroundConfiguration.clearConfiguration;
} else {
// Fallback on earlier versions
}