本文介绍了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 不工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!