iOS 中关于导航栏和分栏遇到的问题

translucent

先来看下官方文档

/*
 New behavior on iOS 7.
 Default is YES.
 You may force an opaque background by setting the property to NO.
 If the navigation bar has a custom background image, the default is inferred 
 from the alpha values of the image—YES if it has any pixel with alpha < 1.0
 If you send setTranslucent:YES to a bar with an opaque custom background image
 it will apply a system opacity less than 1.0 to the image.
 If you send setTranslucent:NO to a bar with a translucent custom background image
 it will provide an opaque background for the image using the bar's barTintColor if defined, or black
 for UIBarStyleBlack or white for UIBarStyleDefault if barTintColor is nil.
 */
@property(nonatomic,assign,getter=isTranslucent) BOOL translucent API_AVAILABLE(ios(3.0)) UI_APPEARANCE_SELECTOR; // Default is NO on iOS 6 and earlier. Always YES if barStyle is set to UIBarStyleBlackTranslucent

iOS 7 之后,该属性默认为 YES。但是如果给导航栏设置了一张自定义的背景图片,如果该图片有一个 alpha<1 的像素,那么该值就为 YES,否则为 NO。(设置导航栏的背景图片会影响 translucent 的默认值)

如果手动设置了该属性,并且设置了导航栏的背景图,则系统可能会对背景图进行处理:

    1. 如果设置该属性为 YES,但是提供了一张不透明的背景图,系统会对该背景图进行半透明处理
    1. 如果设置该属性为 NO,但是提供了一张半透明的背景图,则系统会对该背景图进行不透明处理。具体是根据导航栏的 style 或者 barTintColor 进行处理

总结(iOS 7 以上系统):

    1. 当导航栏没有被隐藏时,且 translucent 属性设置为 YES,那么,UIViewControllerviewframe 起始点是从屏幕的左上角(0,0)开始,大小是整个屏幕宽高。而当 translucent 属性设置为 NO 时,那么 UIViewControllerviewframe 起始点是从导航栏左下角开始,宽是屏幕的宽,高是整个屏幕减去导航栏的高度。
    1. UIViewControllerview 的子视图布局推荐在viewWillLayoutSubviews 中进行,因为此时不管 translucent 为何值,它的 size 都是正确的。
示例

同样一份代码,在不同的控制器中,一个控制器导航栏是透明的,一个不透明

UIView *view1 = [[UIView alloc] initWithFrame:CGRectMake(30, 10, 200, 100)];
view1.backgroundColor = [UIColor redColor];
[self.view addSubview:view1];

UIView *view2 = [[UIView alloc] initWithFrame:CGRectMake(30, [UIScreen mainScreen].bounds.size.height - 200, 200, 200)];
view2.backgroundColor = [UIColor greenColor];
[self.view addSubview:view2];

运行截图如下

push 时控件下移

push 操作是导航栏特有的,关于它的 translucent 上面也介绍了,下面从两个方法分析

extendedLayoutIncludesOpaqueBars

官方文档说明

@property(nonatomic,assign) BOOL extendedLayoutIncludesOpaqueBars API_AVAILABLE(ios(7.0)); // Defaults to NO, but bars are translucent by default on 7_0. 

YES 代表当导航栏不透明时,当前页面 view 的布局从导航栏顶部开始计算。 需要注意:导航栏半透明时,view 是包含导航栏的。如果一个导航栏不透明,另一个导航栏透明,切换就会出现问题。

edgesForExtendedLayout

官方文档说明


typedef NS_OPTIONS(NSUInteger, UIRectEdge) {
    UIRectEdgeNone   = 0, //self.view.frame是从navigationBar下面开始计算一直到屏幕tabBar上部
    UIRectEdgeTop    = 1 << 0, //self.view.frame是从navigationBar上面计算面开始计算一直到屏幕tabBar上部
    UIRectEdgeLeft   = 1 << 1,
    UIRectEdgeBottom = 1 << 2, //self.view.frame是从navigationBar下面开始计算一直到屏幕底部
    UIRectEdgeRight  = 1 << 3,
    UIRectEdgeAll    = UIRectEdgeTop | UIRectEdgeLeft | UIRectEdgeBottom | UIRectEdgeRight //布局是从navigationbar顶部开始,屏幕底部结束
} API_AVAILABLE(ios(7.0));

@property(nonatomic,assign) UIRectEdge edgesForExtendedLayout API_AVAILABLE(ios(7.0)); // Defaults to UIRectEdgeAll

边缘延伸属性。是视图控制器的布局属性,默认值是 UIRectEdgeAll,即:当前视图控制器里各种UI控件【本身】(而非内容)会忽略导航栏和标签的存在,布局时若设置其原点设置为(0,0),视图会延伸显示到导航栏的下面被覆盖;其值为UIRectEdgeNone意味着子控件本身会自动躲避导航栏和标签栏,以免被遮挡。

automaticallyAdjustsScrollViewInsets

官方文档说明

@property(nonatomic,assign) BOOL automaticallyAdjustsScrollViewInsets API_DEPRECATED("Use UIScrollView's contentInsetAdjustmentBehavior instead", ios(7.0,11.0),tvos(7.0,11.0)); // Defaults to YES

UIViewController 的一个属性:(iOS7.0引入,11.0废除,之后其作用被 UIScrollView 的新属性 contentInsetAdjustmentBehavior 所取代,如设置为 UIScrollViewContentInsetAdjustmentAutomatic 等);
作用:默认情况下,它可以保证滚动视图的内容自动偏移,不会被 UINavigationBarUITabBar 遮挡。

automaticallyAdjustsScrollViewInsets 的设置只对滚动视图有效,对普通的 view 无效;对普通 view 而言,UINavigationBarUITabBar 半透明:会被遮挡;不透明,不会被遮挡。如果两个都是默认情况下,则滚动视图的内容不会被遮挡,普通的 view 会被遮挡,这是最常见的情况。

以上是自己开发项目时遇到的问题,做个笔记,方便后续查看,希望也能帮助需要的小伙伴。如有问题,请指出,谢谢

你可能感兴趣的:(iOS 中关于导航栏和分栏遇到的问题)