iOS11 隐藏navigationBar后,页面显示异常
2017-09-30 本文已影响12人
东北小小猿
滑动视图
因为在iOS11 苹果废弃了控制器的automaticallyAdjustsScrollViewInsets这个方法,而推荐使用UIScrollView的contentInsetAdjustmentBehavior。
控制器方法所以解决办法是:
if(@available(iOS11.0, *)) {
_collectionView.contentInsetAdjustmentBehavior=UIScrollViewContentInsetAdjustmentNever;
}else{
self.automaticallyAdjustsScrollViewInsets=NO;
}