我正在尝试将我的项目迁移到 Swift 3。我正在使用 ReactiveKit 和 Bond,我正在努力进行一些转换。
1)我的大多数扩展曾经看起来像这样:
extension UIView {
public var bnd_superview: Observable<UIView?> {
return bnd_associatedObservableForValueForKey("superview")
}
我找不到bnd_associatedObservableForValueForKey
改成什么了。
2)我有以下代码:
self.myButton.bnd_selected.next(false)
它应该更改为:
self.myButton.reactive.isSelected.next(false)
但我收到以下错误:
“债券”类型的值没有成员“下一个”