I subscribed one object for some changes from another object like this: [objA addObserver:self forKeyPath:keyPath options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld context:nil]; and when changes are made the observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context is called. But values for "new" and "old" keys for change dictionary are always the same. This issue is reproducible only is iOS 4.x, in iOS 5.x it works fine. Any suggestions? Thanks a lot
|
|
|
It depends upon what you're observing and how that object has changed. Notably, if the object pointer is not changing, but rather some property/attribute of that object has changed (e.g. you have a NSMutableArray and you just add a value to the array, but the address of the NSMutableArray itself hasn't changed), the new and old pointers are actually pointing to the same object, so it will look unchanged. Frequently in these cases, you won't even get the notification of the change, but even if you manually invoke the Make sure to your object is KVO Compliant, too. If you want more help, you'll have to provide more specifics (notably, the source code) about the object that you're changing and how you're changing it. |
||||
|
|