Xcode开发工具iOS 适配

ios 11 automaticallyAdjustsScrol

2018-03-22  本文已影响9人  此时_此景

两个属性一个automaticallyAdjustsScrollViewInsets iOS11之前用,一个UIScrollViewContentInsetAdjustmentBehavior iOS11之后用。

作用

IOS11 之前,不想让scrollView偏移64px,设置automaticallyAdjustsScrollViewInsets=NO就可以了。IOS11以后就废弃了,使用scrollView的属性contentInsetAdjustmentBehavior来防止偏移。

UIScrollViewContentInsetAdjustmentAutomatic  

UIScrollViewContentInsetAdjustmentScrollableAxes 

UIScrollViewContentInsetAdjustmentNever 

UIScrollViewContentInsetAdjustmentAlways

这里我们直接选Never就可以了。

虽然对我来说没什么用,但是总结一下,方便以后查阅。

上一篇 下一篇

猜你喜欢

热点阅读