美文网首页Xcode开发工具iOS 适配
ios 11 automaticallyAdjustsScrol

ios 11 automaticallyAdjustsScrol

作者: 此时_此景 | 来源:发表于2018-03-22 10:06 被阅读9次

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

    作用

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

    UIScrollViewContentInsetAdjustmentAutomatic  

    UIScrollViewContentInsetAdjustmentScrollableAxes 

    UIScrollViewContentInsetAdjustmentNever 

    UIScrollViewContentInsetAdjustmentAlways

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

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

    相关文章

      网友评论

        本文标题:ios 11 automaticallyAdjustsScrol

        本文链接:https://www.haomeiwen.com/subject/euwoqftx.html