2021-12-27

1:当导航栏半透明时(navigationBar.translucent = YES),
self.view的布局只受edgesForExtendedLayout属性影响。
2:当导航栏不透明时(navigationBar.translucent = NO),
self.view的布局受edgesForExtendedLayout和extendedLayoutIncludesOpaqueBars两个属性影响。
3:automaticallyAdjustsScrollViewInsets并不影响self.view的布局,
只是当self.view添加ScrollView及其子类的时候,为了让包含的内容不被Bar遮住而调整contentInset的值。

参考资料

https://www.jianshu.com/p/d6af3ff634c1

你可能感兴趣的:(2021-12-27)