iOS11section间距大的问题

Posted 爱生活爱代码

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS11section间距大的问题相关的知识,希望对你有一定的参考价值。

//解决ios11,仅实现heightForHeaderInSection,没有实现viewForHeaderInSection方法时,section间距大的问题
[UITableView appearance].estimatedRowHeight = 0;
[UITableView appearance].estimatedSectionHeaderHeight = 0;
[UITableView appearance].estimatedSectionFooterHeight = 0;

//iOS11 解决SafeArea的问题,同时能解决pop时上级页面scrollView抖动的问题
if (@available(iOS 11, *)) {
[UIScrollView appearance].contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever; //iOS11 解决SafeArea的问题,同时能解决pop时上级页面scrollView抖动的问题
}









以上是关于iOS11section间距大的问题的主要内容,如果未能解决你的问题,请参考以下文章

iOS 11 安全区域适配

iOS UITableViewCell 间距设置

间距在 MUI 中的工作原理。例如 <Box component="section" py=[5, 5, 10]>

tableview分组样式每组section之间距离的调整

iOS 11 UI Collection Section Header 裁剪滚动指示器

UITableViewStyleGrouped模式下多余间距