自定义导航栏按钮

自定义导航栏按钮通过navigationItem.leftBarButtonItem,可能大家都知道,但关键点在于哪个控制器的navigationItem,举下面几种情况
一,UINavigationController+UIViewController,这种方式是常规的,没有问题
AppDelegate.m

ViewController *vc = [[ViewController alloc] init];
UINavigationController  *nav = [[UINavigationController alloc] initWithRootViewController:vc]; self.window.rootViewController = nav;

ViewController.m

UIButton * leftBtn = [UIButton buttonWithType:UIButtonTypeCustom];
leftBtn.frame = CGRectMake(10, 7, 83, 30);
leftBtn.backgroundColor = [UIColor orangeColor];
UIBarButtonItem * leftItem = [[UIBarButtonItem alloc] initWithCustomView:leftBtn]; 
self.navigationItem.leftBarButtonItem = leftItem;

二,UINavigationController+UITabBarController+UIViewController,这种方式设置了没有效果
AppDelegate.m

    UITabBarController *tabbar = [[UITabBarController alloc] init];
    tabbar.view.backgroundColor = [UIColor greenColor];
    ViewController *vc = [[ViewController alloc] init];
    [tabbar addChildViewController:vc];
    UIViewController *vc1 = [[UIViewController alloc] init];
    vc1.view.backgroundColor = [UIColor yellowColor];
    vc1.title = @"民宿";
    [tabbar addChildViewController:vc1];
    UINavigationController  *nav = [[UINavigationController alloc] initWithRootViewController:tabbar];
    nav.view.backgroundColor = [UIColor redColor];
    self.window.rootViewController = nav;

ViewController.m

UIButton * leftBtn = [UIButton buttonWithType:UIButtonTypeCustom];
leftBtn.frame = CGRectMake(10, 7, 83, 30);
leftBtn.backgroundColor = [UIColor orangeColor];
UIBarButtonItem * leftItem = [[UIBarButtonItem alloc] initWithCustomView:leftBtn];
self.navigationItem.leftBarButtonItem = leftItem;

三,UINavigationController +UIViewController +UIViewController 这样设置也没有效果
AppDelegate.m

    ViewController *vc = [[ViewController alloc] init];
    UINavigationController  *nav = [[UINavigationController alloc] initWithRootViewController:vc];
    self.window.rootViewController = nav;

ViewController.m

    ViewControllerB *viewB = [[ViewControllerB alloc] init];
    [self addChildViewController:viewB];

ViewControllerB.m

// 自定义导航栏左侧按钮
    UIButton * leftBtn = [UIButton buttonWithType:UIButtonTypeCustom];
    leftBtn.frame = CGRectMake(10, 7, 83, 30);
    leftBtn.backgroundColor = [UIColor orangeColor];
    UIBarButtonItem * leftItem = [[UIBarButtonItem alloc] initWithCustomView:leftBtn];
    self.navigationItem.leftBarButtonItem = leftItem;
    self.view.backgroundColor = [UIColor purpleColor];

我就在考虑为什么有的可以有的不可以,每个UIViewController都有navigationItem,难道navigationItem不是都指向统一的navigationController.navigationBar的navigationItem,
查看官方文档

This is a unique instance of UINavigationItem created to represent the view controller when it is pushed onto a navigation controller. The first time the property is accessed, the UINavigationItem object is created. Therefore, you should not access this property if you are not using a navigation controller to display the view controller. To ensure the navigation item is configured, you can either override this property and add code to create the bar button items when first accessed or create the items in your view controller'��s initialization code.

我分别打印了UINavigationController,UITabBarController,UIViewController的navigationItem内存地址,结果不一样,和官方文档的说明一致,每个控制器都会新建一个navigationItem,至于把哪个navigationItem加到要显示的navigationBar上,主要是由[[UINavigationController alloc] initWithRootViewController:vc];导航控制器的根试图控制器决定的。
我打印出了,

self.navigationController.navigationBar.items.lastObject.leftBarButtonItems
   

结果和initWithRootViewController试图控制器里的navigationItem上的leftBarButtonItem的内存地址一致。(以自定义导航栏做按钮为示例,推理),navigationItem是只读的,我猜想是以navigationItem为媒介来操作leftBarButtonItem,至于苹果为什么这样设计,不是很明白,猜想会不会为了高内聚低耦合。。😆(补充一点,如果在控制器里直接设置

self.navigationController.navigationBar.items.lastObject.leftBarButtonItems = @[leftItem,leftItem1];
  

是可以的。。。。)

在寻找答案的过程中,也用了reveal工具来帮助我分析,在刚开始的分析中,我会问自己我怎么看不到控制器,怎么都是试图,慢慢的我领悟到,其实整个APP就是图层的叠加显示,是动态的图层,因为有网络和交互。而控制器只不过是人为的抽取出来来出来一个view上的所有试图的交互和逻辑。一点小心得记录一下,虽然可能对于别人而言早都理解了,但是对于我却是不小的欣喜。是从知道了到理解的质变。今天是腊八,口号,腊八腊八发发发,😄😄!


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

推荐阅读更多精彩内容