self.title sets navigationController and tabBarItem#39;s title? Why?(self.title 设置navigationController 和tabBarItem 的标题?为什么?)
问题描述
我在 UIViewController 中为我的一个标签执行此操作:
I do this in a UIViewController for one of my tabs:
self.title = @"Welcome";
但是,它会覆盖我对 tabBarItem 的所有内容.我试过了:
However, it's overwriting whatever I have for the tabBarItem. I have tried:
self.tabBarItem.title = @"Home";
和
[self.tabBarItem initWithTitle:@"Home" image:[UIImage imageNamed:@"iconHome.png"] tag:0];
但是,self.title 仍然会覆盖 tabBarItem,无论我是否在 设置标题之后尝试后两段代码.代码甚至可以正常运行,但是 self.tabBarItem.title
或 initWithTitle
什么也没做?
But still, self.title overwrites the tabBarItem, regardless of whether I am trying the two latter pieces of code after the title has been set. The code even runs without errors, but the self.tabBarItem.title
or initWithTitle
doesn't do anything?
推荐答案
好的,我想通了!这就是我正在做的事情:
OK, I figured it out! Here's what I am doing:
self.title = @"Title for TabBarItem"; // TabBarItem.title inherits the viewController's self.title
self.navigationItem.title = @"Title for NavigationBar";
navigationBar
将继承 self.title,除非另外使用 self.navigationItem.title
the navigationBar
would inherit self.title, unless otherwise set using self.navigationItem.title
这篇关于self.title 设置navigationController 和tabBarItem 的标题?为什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:self.title 设置navigationController 和tabBarItem 的标题?为什么?


- 类似于 Mail.app 的 iPad 模态视图控制器? 2022-01-01
- 使用自动布局向 UIScrollView 添加动态大小的视图 2022-01-01
- 在 Iphone SDK 的导航栏上添加多个按钮 2022-01-01
- GPS状态的广播接收器? 2022-01-01
- 网上有没有好的 UIScrollView 教程? 2022-01-01
- Xcode 7.3 中带有 UILabel 的 UIStackView 2022-01-01
- SetOnItemSelectedListener上的微调程序错误 2022-01-01
- URL编码Swift iOS 2022-01-01
- UITextView 内容插图 2022-01-01
- 如何在 iPhone 模拟器中重置 NSUserDefaults 数据? 2022-01-01