iOS15 TableView每个section顶部多了一段
2021-11-17 本文已影响0人
懒床小番茄
iOS15 中 tableView 新加了一个属性:sectionHeaderTopPadding,默认值为 UITableViewAutomaticDimension
// Padding above each section header. The default value is UITableViewAutomaticDimension.
if #available(iOS 15, *) {
tableView.sectionHeaderTopPadding = .zero
}