I was wondering what the parameters from this method would return.
- (void) observeValueForKeyPath:(NSString *)keyPath
ofObject:(id)object
change:(NSDictionary *)change
context:(void *)context;
In the documentation it says
keyPath The key path, relative to object, to the value that has changed.
object The source object of the key path keyPath.
change A dictionary that describes the changes that have been made to the value of the property at the key path keyPath relative to object.
context The value that was provided when the receiver was registered to receive key-value observation notifications.
Could you possibly explain these parameters for me, as i find the documentation a bit hard to understand.