在我的 iPhone 应用程序中,我有一个标签栏.此选项卡栏包含一个 UINavigationController.我有:
In my iPhone application, I have a tab bar. This tab bar holds a UINavigationController. I have:
self.tabBarItem.title = 'Create New';
和 self.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 不工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!