我有一个UITabBarController,它包含一个包含UITableViewController的UINavigationController。
如何访问表视图控制器中的tabBarItem?
我尝试self.navigationItem.tabBarItem.title = @"Something";
但是会抛出编译错误:
Property 'tabBarItem' not found on object of type 'UINavigationItem *'
答案 0 :(得分:0)
tabBarItem位于View Controller上,而不是Navy Item。尝试
self.navigationController.tabBarItem.title = @"something";