I have a class with a property
@property (nonatomic) double* myDoubles
This property has 3 doubles in it
myDoubles[0]; //0.02
myDoubles[1]; //0.42
myDoubles[2]; //0.99
If the values change, I'd like the following method to be called
[self setNeedsDisplay];
I tried using FBKVOController, but that didn't work..
_observer = [FBKVOController controllerWithObserver:self];
[_observer observe:self
keyPath:@"myDoubles"
options:NSKeyValueObservingOptionNew
action:@selector(setNeedsDisplay)];
I don't want to start an NSTimer and just check for changes.