self.tabBarItem.title not working?(self.tabBarItem.title 不工作?)
本文介绍了self.tabBarItem.title 不工作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在我的 iPhone 应用程序中,我有一个标签栏.此选项卡栏包含一个 UINavigationController.我有:
In my iPhone application, I have a tab bar. This tab bar holds a UINavigationController. I have:
- 在 Interface Builder 中,将选项卡项标题设置为新建"
- 在 UINavigation 控制器中,我有
self.tabBarItem.title = "Q3JlYXRlIE5ldw==";
和self.title = "Q3JlYXRlIE5ldw==";
- 在UIViewController推到控制器上:self.tabBarItem.title = "Q3JlYXRlIE5ldw==";但是
self.title = "QmxhaA==";
.
但是,总是会显示推到导航控制器上的第一个视图控制器的 self.title (Blah).您将如何设置标签栏项目的标题?谢谢,艾萨克·沃勒
But, always, the self.title of the first view controller pushed onto the navigation controller is shown (Blah). How would you set the title of the tab bar item? Thanks, Isaac Waller
推荐答案
我发现如果我使用 self.navigationItem.title = "QmxhaA==";
而不是 self.title
,它会工作.
I found if I used self.navigationItem.title = "QmxhaA==";
instead of self.title
, it would work.
这篇关于self.tabBarItem.title 不工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:self.tabBarItem.title 不工作?


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