在Reactivekit中有没有为setTitle实现选择器的等价物rac_liftSelector?
发布于 2017-04-04 20:33:02
已通过创建ReactiveExtension解决此问题。
extension ReactiveExtensions where Base: UIButton {
var Title: Bond<String?> {
return bond { button, text in
let attributedString = NSAttributedString(string: text!)
button.setAttributedTitle(attributedString, for: UIControlState.normal)
}
}
}https://stackoverflow.com/questions/43193043
复制相似问题