标签:
一般在有导航navigationController的情况下,要设置页面的标题很简单
self.title = self.chatWithFriend.nibName; //chatWithFriend是接收到的属性
容易出错的情况:
self.navigationController.title = self.chatWithFriend.nibName; //这样是不行的。
这个改了返回后的tabBar的标题,当前页面的标题并没有改。
标签:
原文地址:http://www.cnblogs.com/endtel/p/4729947.html