self.tabBarItem.title 和 self.title

UITabBar上面显示的每一个Tab都对应着一个ViewController,我们可以通过设置viewController.tabBarItem属性来改变tabbar上对应的tab显示内容,否则系统将会根据viewController的title自动创建一个。

self.title = @"viewControllerTitle";

self.tabBarItem.title = @"tabBarItemTitle";

设置下边的  不会改变上边,但是 上边 会改变下边。

你可能感兴趣的:(self.tabBarItem.title 和 self.title)