ios 11 automaticallyAdjustsScrollViewInsets/UIScrollViewContentInsetAdjustmentBehavior

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

作用

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

UIScrollViewContentInsetAdjustmentAutomatic  

UIScrollViewContentInsetAdjustmentScrollableAxes 

UIScrollViewContentInsetAdjustmentNever 

UIScrollViewContentInsetAdjustmentAlways

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

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


你可能感兴趣的:(ios 11 automaticallyAdjustsScrollViewInsets/UIScrollViewContentInsetAdjustmentBehavior)