2022-11-08 UITableView UITableVi
2022-11-07 本文已影响0人
我是小胡胡分胡
添加1:
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
return 0.1;
}
添加2:
if (@available(iOS 11.0, *)) {
self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
}
if (@available(iOS 15.0, *)) {
self.tableView.sectionHeaderTopPadding = 0.1;
}
添加3:
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
return nil;
}
到添加3 才最后解决问题。