我知道这已经被问到了,但是我无法弄清楚如何使用我的应用程序 - 我确定我做错了。
我在UITabBarViewContoller
,FirstViewController
和SecondViewController
中嵌入了两个视图控制器。 SecondViewController
只是用于管理应用连接到的主机名和端口的UITextFields
。
FirstViewController包含大部分代码(我知道它并非面向MVC)。我试图从SecondViewController
实施代表团回FirstViewController
(Passing Data between View Controllers),但似乎我的委托方法没有被调用。由于这是基于故事板,我没有创建SecondViewController
的实例,我不知道如何设置代理。有没有办法访问SecondViewController
的实例,以便我可以设置代理?
答案 0 :(得分:0)
里程碑谢谢你!
我的解决方案(快速)
let secondView = self.tabBarController.viewControllers[1] as SecondViewController
secondView.delegate = self