我正在学习如何深入了解委托模式。 iOS中的许多代码示例使用两个ViewControllers
,其中涉及prepare(for segue:...)
。
我希望我的程序只使用一个ViewController
代理协议但没有segue或storyboard。 ViewController
有一个按钮来执行一个简单的委托方法,比如添加一个数字。
ViewController
班级:
class ViewController: UIViewController, theDelegate {
override func viewDidLoad() {
super.viewDidLoad()
}
// It is here I got stuck
// How do I set delegate = self without out involving segue or the storyboard at all? Do I need to instantizate the dedecated delegate class and how?
// To conform to delegate -- theDelegate
func add(num: Int) {
// Output result on ViewController
}
func minus(num: Int) {
// Output result on ViewController
}
}
专用Delegate
班级:
protocol theDelegate: class {
func add(num: Int)
func minus(num: Int)
}
class ClassDelegate: NSObject {
weak var delegate: theDelegate?
func x() {
delegate?.add(num: 100)
}
}
答案 0 :(得分:3)
如果您的视图控制器是委托,那么您的类命名会令人困惑。你所谓的ClassDelegate
并不是任何一种代表,而是一个"工人" 使用委托。然而....
var worker = ClassDelegate()
override func viewDidLoad() {
super.viewDidLoad()
worker.delegate = self
worker.x()
}
答案 1 :(得分:1)