iOS--iOS11 新属性contentInsetAdjustmentBehavior

当选择在xocde9运行基于iOS10的项目时,发现app内所有tableview、collectionview(所有继承自UIScrollView的控件)在点击进入下一界面和返回时,所有tableview、collectionview都有同步联动的动画效果


iOS11节目切换效果.gif

这是iOS11中新增加的属性(contentInsetAdjustmentBehavior),此属性默认开启;

如果想关闭此熟悉 可以在viewDidLoad方法中做如下设置:

_scrollview.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;

你可能感兴趣的:(iOS--iOS11 新属性contentInsetAdjustmentBehavior)