如何从storyboard中的viewController创建一个Outlet或引用到我们的控制器?

时间:2012-10-10 02:10:47

标签: objective-c storyboard xcode4.5

我创建了一个以UITabBarController开头的应用程序

这样的事情:

enter image description here

现在我想在代码中引用那个UITabBarController。我该怎么办呢?

我应该右键拖动到应用程序委托吗? (不起作用)。

我可以使用instantiateViewControllerWithIdentfier:但我不想创建一个新的UITabBarController。我想参考现有的那个。

1 个答案:

答案 0 :(得分:1)

您想在代码中引用它吗?如果它是标签栏控制器管理的控制器之一,那么您可以使用self.tabBarController。如果它来自appDelegate,你可以使用self.window.rootViewController。