在我的observeValueForKeyPath:ofObject:change:context:
方法中,我对这些情况进行了切换:
case NSKeyValueChangeReplacement: /* replace an existing row */
case NSKeyValueChangeInsertion: /* insert a new row */
case NSKeyValueChangeRemoval: /* remove an existing row */
到现在为止还挺好。
我也必须处理NSKeyValueChangeSetting
,但我不知道要编码什么。
case NSKeyValueChangeSetting: /* what about this one? */
那么它的目的是什么?