ios11适配的坑

来源:互联网 发布:淘宝店铺收藏和关注 编辑:程序博客网 时间:2024/05/29 15:07

搜到的一个不错的文章

我遇见的主要是:IOS11 之前,不想让scrollView偏移64px,设置automaticallyAdjustsScrollViewInsets=NO就可以了。IOS11以后就废弃了,使用scrollView的属性contentInsetAdjustmentBehavior来防止偏移。
UIScrollViewContentInsetAdjustmentAutomatic
UIScrollViewContentInsetAdjustmentScrollableAxes
UIScrollViewContentInsetAdjustmentNever
UIScrollViewContentInsetAdjustmentAlways
这里我们直接选Never就可以了
原址
http://blog.csdn.net/PRESISTSI/article/details/78017111

原创粉丝点击