以下代码曾经适用于 Swift 5.2,也可能适用于 Swift 5.3。(最后一次构建是 2020 年 11 月)
@propertyWrapper
class ActionBindable<Button> where Button : UIControl {
var target: Any? {
didSet { setTargetAction() }
}
weak var wrappedValue: Button! {
didSet { setTargetAction() }
}
private let action: Selector
private let event: UIControl.Event
init(action: Selector, event: UIControl.Event = .touchUpInside) {
self.action = action
self.event = event
}
private func setTargetAction() {
guard target != nil && wrappedValue != nil else { return }
wrappedValue.addTarget(target, action: action, for: event)
}
}
但是,我现在收到一个错误:
Property type 'UIKit.UIControl?' does not match 'wrappedValue' type 'UIKit.UIControl?'
有一段时间没有关注属性包装器了,所以我想知道发生了什么变化。
这是使用属性包装器的代码:
@ActionBindable(action: #selector(addAction))
var addButton: UIControl!