我创建了一个以UITabBarController开头的应用程序
这样的事情:
现在我想在代码中引用那个UITabBarController。我该怎么办呢?
我应该右键拖动到应用程序委托吗? (不起作用)。
我可以使用instantiateViewControllerWithIdentfier:但我不想创建一个新的UITabBarController。我想参考现有的那个。
答案 0 :(得分:1)
您想在代码中引用它吗?如果它是标签栏控制器管理的控制器之一,那么您可以使用self.tabBarController。如果它来自appDelegate,你可以使用self.window.rootViewController。