[iOS11] contentInsetAdjustmentBehavior 问题, push back时, 界面会上下移动.

Posted willbin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[iOS11] contentInsetAdjustmentBehavior 问题, push back时, 界面会上下移动.相关的知识,希望对你有一定的参考价值。

https://stackoverflow.com/questions/45573829/weird-uitableview-behaviour-in-ios11-cells-scroll-up-with-navigation-push-anima

 

在你的tablview/controller基类设置

 if (@available(ios 11.0,*)) {
        self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
    }

 

不要用  `[UIScrollView appearance]` 的方法, 不生效.

 

 

 

 

PS: 搜索这个问题的话, 国内的多个文章都是抄的同一篇, 且是错的.

如下是错的.

  1. 目前发现所有的Scrollview 及其子类都需要设置 contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever ,  
  2. 工程中大量使用列表的同学不要慌,不要忙,因为UIView及其子类都遵循UIAppearance协议,我们可以进行全局配置:    
  3.     
  4. // AppDelegate 进行全局设置    
  5.     if (@available(iOS 11.0, *)){    
  6.         [[UIScrollView appearance] setContentInsetAdjustmentBehavior:UIScrollViewContentInsetAdjustmentNever];    
  7.     }    
  8.     
  9. 这样一来使用UITableview 、UICollectionView、UIScrollview的时候就不需要再单独设置该属性了。  

以上是关于[iOS11] contentInsetAdjustmentBehavior 问题, push back时, 界面会上下移动.的主要内容,如果未能解决你的问题,请参考以下文章

iOS 11开发教程

AVPlayerViewController 视频适用于 iOS 11、12,但不适用于 iPhone 11 的 iOS 13

“命名颜色在 iOS 11.0 之前不起作用。”即使部署目标是 >= iOS 11.0

iOS 11开发教程iOS11模拟器介绍一

iOS 11开发教程iOS11无线连接手机真机测试

iOS 11开发教程(十四)iOS11应用代码添加视图