If I'm using RACable like this:
[RACAbleWithStart(self.myProp) subscribeNext:^(id x) {
// Do stuff
}];
How can can I access the old value of myProp (before the change the caused the signal to fire)? So I can access it like this:
[RACAbleWithStart(self.myProp) subscribeNext:^(id x) {
// Do stuff
id newValue = x;
id oldValue = RAC_oldValue;
}];