您的位置:首页 > 产品设计 > UI/UE

UITabBarItem title 和self.title设置不同的标题

2016-03-07 15:23 369 查看
问题解决了,首先吐槽下百度,翻了好几页都没找到,Google一下就搞定了,Google不在天朝发展对中国程序员来说损失不少时间。。。

原文
http://stackoverflow.com/questions/21615637/how-to-change-uiviewcontroller-title-independent-of-tabbar-item-title
经典部分:

self.navigationItem.title
= @"my title";
 sets navigation bar title.

self.tabBarItem.title
= @"my title";
 sets tab bar title.

self.title
= @"my title";
 sets both of these.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  UITabBarItem self.title