MVVM でバインドするために RxSwift を使用しようとしています。私は持っていEnum
ます:
enum Color : Int {
case Red = 0, Green
}
およびテスト用のクラス
class Test : NSObject {
var color: Color = .Red
dynamic var test: String? {
didSet {
print("didSet \(test)")
}
}
}
そして、次のような変化を観察したい:
test.rx_observe(Color.self, "color").subscribeNext { (color) -> Void in
print("Observer \(color)")
}.addDisposableTo(bag)
しかし、プログラムは
*** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<RDProject.Test 0x7ff373513020> addObserver:<RxCocoa.KVOObserver 0x7ff37351a420> forKeyPath:@"color" options:5 context:0x0] was sent to an object that is not KVC-compliant for the "color" property.'
単純String
作業のコード:
test.rx_observe(String.self, "test").subscribeNext { string in
print("Observer \(string)")
}.addDisposableTo(bag)
test.test = "1"
test.test = "2"
ここで、クラスを継承しないNSObject
ようにするには、それを作成する必要があることを発見しましたが、動的dynamic
にすることはできません。観測可能Enum
にする方法はありますか?Enum