5

是否可以扩展 Reactive 结构,其中基类是我从 UIControl 继承的自定义控件?

当我尝试以下代码时:

extension Reactive where Base: CustomControl {

    public var value: ControlProperty<CGFloat> {

        return CustomControl.rx.value(

            self.base,

            getter: { customControl in
                customControl.customProperty
            },
            setter: { customControl, value in
                customControl.customProperty = value
            }
        )
    }
}

我收到以下错误:

Instance member "value" cannot be used on type 'Reactive<CustomControl>'

如果您能给我任何解释,我将不胜感激。

4

1 回答 1

4

您可以查看此链接:https ://github.com/ReactiveX/RxSwift/issues/991

该方法value不是公开的,因此您需要创建该方法的公开版本。之后,就可以为您的自定义控件创建扩展。

于 2017-01-06T20:42:46.937 回答