2

方法

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
}

有一个参数change,它是一个字典,其中包含有关值更改性质的信息,我如何找出这本字典中的内容?

4

1 回答 1

9

这是更改字典使用的键的列表。

提取物:

更改字典使用的键

这些常量用作传递给的更改字典中的键observeValueForKeyPath:ofObject:change:context:

NSString *const NSKeyValueChangeKindKey;
NSString *const NSKeyValueChangeNewKey;
NSString *const NSKeyValueChangeOldKey;
NSString *const NSKeyValueChangeIndexesKey;
NSString *const NSKeyValueChangeNotificationIsPriorKey;
于 2009-10-26T16:37:54.750 回答