在故事板和UITabbarController中基于视图的委派

时间:2014-06-23 16:59:16

标签: ios storyboard uitabbarcontroller

我知道这已经被问到了,但是我无法弄清楚如何使用我的应用程序 - 我确定我做错了。

我在UITabBarViewContollerFirstViewControllerSecondViewController中嵌入了两个视图控制器。 SecondViewController只是用于管理应用连接到的主机名和端口的UITextFields

FirstViewController包含大部分代码(我知道它并非面向MVC)。我试图从SecondViewController实施代表团回FirstViewControllerPassing Data between View Controllers),但似乎我的委托方法没有被调用。由于这是基于故事板,我没有创建SecondViewController的实例,我不知道如何设置代理。有没有办法访问SecondViewController的实例,以便我可以设置代理?

1 个答案:

答案 0 :(得分:0)

里程碑谢谢你!

我的解决方案(快速)

    let secondView = self.tabBarController.viewControllers[1] as SecondViewController
    secondView.delegate = self