This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static NSString *MYObservationContext = @"MYObservationContext"; | |
[object addObserver:self forKeyPath:@"key.path" options:(NSKeyValueObservingOptionOld | NSKeyValueObservingOptionNew) context:(void*)&MYObservationContext]; | |
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context { | |
if (context == &MYObservationContext) { | |
id oldValue = [change objectForKey:NSKeyValueChangeOldKey]; | |
id newValue = [change objectForKey:NSKeyValueChangeNewKey]; | |
// Do something | |
} |