理清NavigationBar的相关设置


我在 解决navigationBar跳转出现的黑色块 这篇文章里面介绍了设置 NavigationBar 透明的方法,但是我们设置的页面的rootView不是UIScrollView,如果是UIScrollView应该会碰到以下的问题。
iPhone4s是IOS8系统,iPhoneX是IOS11系统

1. scrollView的内容没有从屏幕开始

image.png
image.png

2.当滚动到出现红色的NavigationBar,push下一个页面,再回来会发现标题栏变白色了。

  • 备注:这里变成白色是因为我使用RTRootNavigationController,如果是使用 UINavigationController,会变成黑色。
2018-01-31 17_48_23.gif

2018-01-31 17_51_10.gif

以上我在项目中遇到的问题,碰到这两个问题,我也束手无策,然后就各种搜索,各种尝试,最终勉强处理了,但是还是没弄懂为什么会这样。后来再继续深究,才算找到了规律。
隐藏页面布局的起点位置有下面几个属性

  • edgesForExtendedLayout
  • translucent
  • extendedLayoutIncludesOpaqueBars
  • automaticallyAdjustsScrollViewInsets

我们先说 edgesForExtendedLayout、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 NS_AVAILABLE_IOS(3_0) UI_APPEARANCE_SELECTOR; // Default is NO on iOS 6 and earlier. Always YES if barStyle is set to UIBarStyleBlackTranslucent

@property(nonatomic,assign) UIRectEdge edgesForExtendedLayout NS_AVAILABLE_IOS(7_0); // Defaults to UIRectEdgeAll
  • edgesForExtendedLayout 默认是UIRectEdgeAll,表示屏幕从(0, 0)左上角开始布局;如果设置UIRectEdgeNone,那么就会从NavigationBar下开始布局
  • translucent 默认是YES,表示屏幕从(0, 0)左上角开始布局;如果设置NO,那么就会从NavigationBar下开始布局;
  • 这两个的排列组合,就有一下几种情况:
  • A. edgesForExtendedLayout = UIRectEdgeAll; translucent = YES;
  • B. edgesForExtendedLayout = UIRectEdgeAll; translucent = NO;
  • C. edgesForExtendedLayout = UIRectEdgeNone; translucent = YES;
  • D. edgesForExtendedLayout = UIRectEdgeNone; translucent = NO;
image.png

image.png

image.png
image.png
  • 上面四种情况分别对应四个效果图;我们可以得出
    *1. translucent = NO; 或者 edgesForExtendedLayout = UIRectEdgeNone;根视图会从NavigationBar下开始布局
    *2. 如果设置 translucent = NO; 那么 edgesForExtendedLayout 不起作用

需求 1.rootView是UIScrollView,且 NavigationBar是透明的。

- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.title = @"UIScrollView+透明NavigationBar";
    [self setNavigationBarColor:[UIColor clearColor]];
    
    CGFloat width = [UIScreen mainScreen].bounds.size.width;
    CGFloat height = [UIScreen mainScreen].bounds.size.height;
    
    UIScrollView *rootView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, width, height)];
    rootView.backgroundColor = [UIColor whiteColor];
    rootView.contentSize = CGSizeMake(0, height+10);//界面可以滚动
    [self.view addSubview:rootView];
    
    UIView *containerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, width, height+10)];
    containerView.backgroundColor = [UIColor yellowColor];
    [rootView addSubview:containerView];
    
    UIView *view = [[UIView alloc] init];
    view.backgroundColor = [UIColor redColor];
    view.frame = CGRectMake(0, 0, 100, 100);
    [containerView addSubview:view];
}
image.png

设置了透明NavigationBar,我们需要的是界面从屏幕左上角开始,而不是NavigationBar下方开始。这是因为 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
/**
Discussion
The default value of this property is YES, which lets container view controllers know that they should adjust the scroll view insets of this view controller’s view to account for screen areas consumed by a status bar, search bar, navigation bar, toolbar, or tab bar. Set this property to NO if your view controller implementation manages its own scroll view inset adjustments.
**/
/**
会为self.view的滚动视图做适配,会为你考虑状态栏,搜索栏,导航栏,工具栏或选项卡栏的高度,自动调整;默认是true,即自动调整;如果要自己控制,就设置false; ios7.0-ios11.0
**/
//我们上面的问题,在ios7.0-ios11.0,做下面设置就可以解决了
self.automaticallyAdjustsScrollViewInsets = NO;

在ios11.0之后呢,就要设置 UIScrollView's contentInsetAdjustmentBehavior

/* Configure the behavior of adjustedContentInset.
 Default is UIScrollViewContentInsetAdjustmentAutomatic.
 */
@property(nonatomic) UIScrollViewContentInsetAdjustmentBehavior contentInsetAdjustmentBehavior API_AVAILABLE(ios(11.0),tvos(11.0));
//对于上面的效果图出现的情况,完整的解决方案是
if (@available(iOS 11.0, *)) {
    self.scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
} else {
    self.automaticallyAdjustsScrollViewInsets = NO;
}

最后还有一个属性 extendedLayoutIncludesOpaqueBars 这个什么作用呢,大家回头看看最开始说的两个问题中的第二个,NavigationBar的颜色是随scrollView的滑动而改变的,当我们停留在“褐色NavigationBar”时,进入下一个页面,再回来,会发现NavigationBar白色了,而且页面也从NavigationBar下开始,而不是全屏。

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
这是文档中的描述,如果设置自定义背景图片,会从自定义背景图片获取alpha,如果它有任何像素的alpha <1.0 就设为YES,否则就取反。
备注:如果你手动设置了translucent,那这个自动取值就不会生效

[self.navigationController.navigationBar setBackgroundImage:[UIImage imageWithColor:color] forBarMetrics:UIBarMetricsDefault];
[self.navigationController.navigationBar setShadowImage:[UIImage new]];
//这是我们设置NavigationBar的颜色方法,可以在后面打印translucent的值,做验证
  • 当我们设置“透明”时,translucent=YES;当我们设置“褐色”,translucent=NO;
    我们上面也讲过translucent=NO,就是“组合B”的效果图,会出现NavigationBar
  • 为什么在当前页面滑动没有问题,要进入下一个页面再回来才会出现呢?
    这是因为这个设置需要在viewDidAppear设置好,我们默认设置的是“透明”即translucent=YES,所以显示正常;当滚动界面设置“褐色”时,translucent=NO,从下一个界面回来,会触发viewWillAppear,系统会在根据translucent=NO调整界面。
    所以我们设置上面相关的属性,要在loadView,viewDidLoad,viewWillAppear等方法中设置。

那么要怎么解决上面的问题呢?
这就是我们最后一个属性 extendedLayoutIncludesOpaqueBars 的作用了。

/**
A Boolean value indicating whether or not the extended layout includes opaque bars.
**/
@property(nonatomic,assign) BOOL extendedLayoutIncludesOpaqueBars NS_AVAILABLE_IOS(7_0); // Defaults to NO, but bars are translucent by default on 7_0.  
//不透明bar时,还要不要从屏幕顶部开始。默认值NO

所以上面的问题,我们只需要设置这个值为YES,就可以解决了

self.extendedLayoutIncludesOpaqueBars = YES;
  • 总结:这四个属性覆盖了NavigationBar的很多情况了,了解了这四个属性的用法及作用,基本上可以NavigationBar就不会再困扰你了。

这里还有一篇文章可以参考,iOS 导航栏的那些事儿,可能这篇文章写得更好。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,732评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,496评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,264评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,807评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,806评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,675评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,029评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,683评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,704评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,666评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,773评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,413评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,016评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,204评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,083评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,503评论 2 343

推荐阅读更多精彩内容