一般情况下 在 swift4.0
中 是这样使用协议的
@objc protocol CommentTableViewCellDelegate {
@objc optional func didClickReplyAction(cell:CommentTableViewCell)
}
class CommentTableViewCell: BaseTableViewCell {
public weak var delegate:CommentTableViewCellDelegate?
}
很明显, 加上 @objc
后它就不是一个纯粹的 swift Protocol 了, 如果是混编项目, 因为要桥接OC这样写是没有问题的, 反而应该鼓励这么写.
但是如果是是纯 swift 开发, 这样写就意味着很多 swift Protocol 的特性你就不能使用了, 比如我们希望在协议中使用泛型, 那么它将报错:
既然被 @objc
修饰的 Protocol 无法使用泛型, 并且项目又是纯 swift 的, 干脆拿掉 @objc
好了, 然而这会造成另外一个错误:
关于上面 optional
的错误暂且不管, 主要看 weak
的错误, delegate 循环引用大家应该都了解, 而防止出现循环引用的办法就是使用 weak
修饰符修饰属性, 但是这里却出问题了, 编译器告诉我们不能用 weak
修饰, 这还怎么搞
去掉是不可能去掉的, 我们还需要靠它解决循环引用呢, 而搜索的结果千篇一律的使用 @objc
的修饰 Protocol ,最后求助群友得到解决方案:
// 注意这里的 class
protocol CommentTableViewCellDelegate: class {
func didClickReplyAction(cell:CommentTableViewCell, model:T)
}
// 属性声明和使用 @objc 的方式是一样的
class CommentTableViewCell: BaseTableViewCell {
public weak var delegate:CommentTableViewCellDelegate?
}
这里为 Protocol 增加了一个约束, 使其只能被 class 实现, 这样就可以使用 weak 修饰属性了
为什么要这么设计呢?
最近在使用过程中遇到一个由此引发的问题
protocol p {
var name: String {get set}
}
typealias type = UIViewController & p
class CustomViewControllerA: UIViewController, p {
public var name: String = ""
}
let vc: any = CustomViewControllerA()
if let newVc = vc as? type {
newVc.title = "123" // 正常
newVc.name = "456" // 报错 Cannot assign to property: 'vc' is a 'let' constant
}
暂且不讨论这些代码的意义, 当尝试给 vc 的 name 赋值的时候报错了, 可是给 title 赋值是没有问题的, 这个问题解决办法和上面的一样: 给 protocol 加上 class.
因为在默认情况下 protocol 要兼顾 struct 和 enum 所以其中的属性编译器也默认为值传递, 既然是值传递, 更改属性也就会造成整个对象的更改, 所以这是不被编译器允许的
tips: 敲代码的时候Protocol后面的 class 可能没有代码提示, 强制敲出来编译是没有问题的
我目前使用的仍旧是Xcode9.2 或许9.3是可以正常敲出来的吧
类似的敲不出来却没有语法错误的还有闭包和泛型的结合
typealias JXCallBackClosure = (_ model: T) ->Void
typealias JXCallBackStringClosure = JXCallBackClosure