iOS15 TableView每个section顶部多了一段

iOS15 中 tableView 新加了一个属性:sectionHeaderTopPadding,默认值为 UITableViewAutomaticDimension
// Padding above each section header. The default value is UITableViewAutomaticDimension.

        if #available(iOS 15, *) {
            tableView.sectionHeaderTopPadding = .zero
        }

你可能感兴趣的:(iOS15 TableView每个section顶部多了一段)