基本上,我有一个UINavController是一个RootView控制器(普通的ViewController),然后是一个TabBar控制器。
当我调用self.title时,它会更改标签项标题,而不是navcontrollers标题。
View A是我调用self.navigationController?.title和self.title的地方,什么都行不通。
答案 0 :(得分:1)
您无法使用self.title设置标题的原因是因为您的设置中的navigationItem显然属于标签栏控制器,而不是控制器A.您可以使用self.tabBarController.title
设置标题