I'm new to ReactiveCocoa and would like to use it as a replacement for KVO on some NSManagedObject
s in a Swift 2 project.
Most of the examples I found online use RACObserve()
, which has been removed(?) in RAC 3. The Changelog states, that the new versions de-emphesize KVO and I should move to PropertyType
s.
Is there any way that I can use Reactive Cocoa 3 and 4 on an existing NSManagedObject
in a similar way to what could be done with RACObserve()
?