self.tabBarItem.title not working?(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 = 'Create New';和self.title = 'Create New'; - 在UIViewController推到控制器上:self.tabBarItem.title = 'Create New';但是
self.title = 'Blah';.
但是,总是会显示推到导航控制器上的第一个视图控制器的 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 = 'Blah'; 而不是 self.title,它会工作.
I found if I used self.navigationItem.title = 'Blah'; instead of self.title, it would work.
这篇关于self.tabBarItem.title 不工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:self.tabBarItem.title 不工作?
基础教程推荐
- 如何从 logcat 中删除旧数据? 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
