I would like to observe the following property…
@property (nonatomic, assign, readonly, getter = isConnected) BOOL connected;
with the following code…
RACSignal *connectedSignaler = RACObserve(communicationManager, connected);
It does not work because of the custom getter. If I remove the custom getter it works fine.
Can someone tell me why this does not work and what I can do to work around the problem?
P.S. I have also tried RACObserve(communicationManager, isConnected);