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