I am trying to make a view controller an observer of a property (an enum) of one of its child view controllers. The view controller whose property I am trying to access is stored in an NSArray. It seems that I cannot do something like this:
[[NSNotificationCenter defaultCenter] addObserver:self forKeyPath:@"[[noteControllers objectAtIndex:1] currentAnimationStatus]" options:NSKeyValueObservingOptionNew context:nil];
so how do I observe the currentAnimationStatus property?