千呼万唤,iOS11.0终于发布,但是对于我们来说是有很多坑要填的,本文将不断更新开发中遇到的各种由系统升级引发的奇葩问题。
UITableView 等滚动视图
废弃API1
2automaticallyAdjustsScrollViewInsets = true //iOS11之前
contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever; //iOS11之后
使用MJRefresh上拉加载会出现不断跳跃 详见这里,解决方法1
2
3
4
5
6
7if (@available(iOS 11.0, *)) {
self.mainTableView.estimatedRowHeight = 0;
self.mainTableView.estimatedSectionFooterHeight = 0;
self.mainTableView.estimatedSectionHeaderHeight = 0;
self.mainTableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
}