iOS11设置automaticallyAdjustsScrollViewInsets失效
更新Xcode到最新版本Xcode9,运行以前的项目,发现这么一个bug,如图所示:
Command选中点击进去发现,这个属性已经过期了
而且是用了新属性contentInsetAdjustmentBehavior来代替。
因此,要做个版本判断:
if (@available(iOS 11.0, *)) {
_scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
}else {
self.automaticallyAdjustsScrollViewInsets = NO;
}