之前的estimatedSection******Height默认为0,现在不为0了,直接写第一部分代码也可以,或者不设置estimatedSection,把代码2两个代理补上也行,看自己选择,本质原因就是因为默认值问题,这两种方式都可以解决这个默认值问题
代码1
if (@available(iOS 11.0, *)) {
self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
// est和代理 可选1个
self.tableView.estimatedSectionFooterHeight = 0;
self.tableView.estimatedSectionHeaderHeight = 0;
} else {
self.automaticallyAdjustsScrollViewInsets = NO;
}
代码2
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
return nil;
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
return nil;
}
cell高度出现高度重合问题
self.tableView.estimatedRowHeight = 0;
default is UITableViewAutomaticDimension, set to 0 to disable
这篇博客探讨了在iOS开发中遇到UITableView内容重合的问题,原因是estimatedSection******Height默认值改变。提供了两种解决方案:一是通过设置estimatedSectionFooterHeight和estimatedSectionHeaderHeight为0;二是实现tableView:viewForFooterInSection:和tableView:viewForHeaderInSection:代理方法返回nil。同时,提到了cell高度设置为0来避免自动布局问题。
922

被折叠的 条评论
为什么被折叠?



