码迷,mamicode.com
首页 > 移动开发 > 详细

iOS11section间距大的问题

时间:2017-11-25 14:23:18      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:safe   content   ted   for   ever   tableview   tin   foo   mat   

//解决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间距大的问题

标签:safe   content   ted   for   ever   tableview   tin   foo   mat   

原文地址:http://www.cnblogs.com/niit-soft-518/p/7895046.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!