首页 > 代码库 > swift 中delegate的使用

swift 中delegate的使用

今天写了delegate,遇到以下问题:

技术分享

这里protocol的写法有问题,如果你的协议代表了一个实现了莫个函数的object,在oc里是这样写 id<protocol>,而在swift中,应该这样写:

protocol MyPickerViewDelegate: NSObjectProtocol {    func pickerConfirm(content:String)}

 这也是因为,除了class 外,struct和enum也能实现协议,但是他们都是值类型,不是引用类型!

swift 中delegate的使用