我正在为iPad Pro开发一款应用程序.在这个应用程序中,containerView用于添加其他视图并与它们进行交互.
首先,我创建了一个协议:
protocol DataViewDelegate { func setTouch(touch: Bool) }
然后,我创建了我的第一个视图控制器
import UIKit class ViewController: UIViewController,DataViewDelegate { @IBOutlet var container: UIView! @IBOutlet var labelText: UILabel! override func viewDidLoad() { super.viewDidLoad() } func setTouch(touch: Bool) { if touch == true { labelText.text = "Touch!" } }
}
最后,我创建了一个嵌入在containerView中的视图.
import UIKit class ContainerViewController: UIViewController { var dataViewDelegate: DataViewDelegate? override func viewDidLoad() { super.viewDidLoad() } @IBAction func touchMe(sender: AnyObject) { dataViewDelegate?. setTouch(true) }
}
但由于某种原因,没有任何反应,第一个视图控制器在setTouch函数中什么都没有收到.
我的问题是:在这种情况下,使用容器,如何在两个ViewsControllers之间进行通信?
看起来你定义了委托,但没有设置委托.这种情况一直发生在我身上.
原文链接:https://www.f2er.com/swift/320201.html