全局设置UITableView的属性|正确计算contentSize|MJRefresh mj_footer 能正常隐藏在底部,不因为数据过少展示在页面中部
Posted huaida
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了全局设置UITableView的属性|正确计算contentSize|MJRefresh mj_footer 能正常隐藏在底部,不因为数据过少展示在页面中部相关的知识,希望对你有一定的参考价值。
可在AppDelegate中设置
if (@available(ios 11.0, *)) {
UITableView.appearance.estimatedRowHeight = 0;
UITableView.appearance.estimatedSectionFooterHeight = 0;
UITableView.appearance.estimatedSectionHeaderHeight = 0;
UITableView.appearance.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
}
以上是关于全局设置UITableView的属性|正确计算contentSize|MJRefresh mj_footer 能正常隐藏在底部,不因为数据过少展示在页面中部的主要内容,如果未能解决你的问题,请参考以下文章
向 uitabelviewcell 添加多个 uilabels 时无法正确设置布局