iOS 15 的 UITableView又新增了一个新属性 高度20像素解决方法

之前一直以为设置-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section和-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section;就行了。在iOS15以下的版本没问题,但是发现在iOS15以上还是会有20的像素高度。困扰了好长时间。后来查阅资料才知道,iOS15新增了属性。

 iOS 15 的 UITableView又新增了一个新属性:sectionHeaderTopPadding 会给每一个section header 增加一个默认高度

当我们 使用 UITableViewStylePlain 初始化 UITableView的时候,就会发现,系统给section header增高了22像素。

//解决办法

    if (@available(iOS 15.0, *)) {

       self.tableView.sectionHeaderTopPadding = 0;

    }

你可能感兴趣的:(iOS 15 的 UITableView又新增了一个新属性 高度20像素解决方法)