在故事板上,父母"场景及其parentVC.swift,有2个带有嵌入式segue的containerVC,每个都有其containerVC.swift。
在container1中,按钮操作调用父自定义方法。
(self.parentViewController as? parentVC)?.parentCustomFunc()
调用container2自定义方法。
func parentCustomFunc(){
self.container2.customFunc()
}
我阅读了很多但尚未了解如何在这种情况下应用委托的使用 这是我在parentVC.swift
中记录的segue块 override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if let container1VC = segue.destinationViewController as? Cont_1 {
self.container1 = container1VC
} else if let topVC = segue.destinationViewController as? TopVC {
self.container2 = container2VC
}
}
哪个容器应该实施协议?
哪个持有var?如何让prepareForSegue使用委托?
由于
答案 0 :(得分:0)
您应为每个ChildViewController
创建两个协议。
也许是这样的:
protocol Child1Delegate {
func userTapOnChild1()
}
protocol Child2Delegate {
func userTapOnChild2()
}
在每个控制器中,您都可以创建实例:
var delegate: Child2Delegate!
var delegate : Child1Delegate!
在Parent控制器上,您实现prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)
以将委托分配给子:
//You get right identifier of segue you named on storyboard
if segue.identifier == "SegueChild1" {
let controller = segue.destinationViewController as! Child1ViewController
controller.delegate = self
}
if segue.identifier == "SegueChild2" {
let controller = segue.destinationViewController as!Child2ViewController
controller.delegate = self
}
当你从孩子做一个动作时,你可以为父母调用委托通知:
@IBAction func child1ButtonIsTapped(sender: AnyObject) {
if let _delegate = delegate {
_delegate.userTapOnChild1()
}
}
Parent将实现委托并执行以下操作:
func userTapOnChild1() {
let alertController = UIAlertController(title: "Child1", message: "I come from child 1", preferredStyle: .Alert)
let action = UIAlertAction(title: "OK", style: .Cancel, handler: nil)
alertController.addAction(action)
self.presentViewController(alertController, animated: true, completion: nil)
}
详细信息,您可以参考我的演示案例:Demo