Global Variable グローバル変数

NSKeyValueChangeKindKey

An NSNumber object that contains a value corresponding to one of the NSKeyValueChange enums, indicating what sort of change has occurred. あるNSNumberオブジェクト、それはNSKeyValueChange enumsの1つに対応している値を含み、どんな種類の変更が起こったかを指し示しています。

Declaration 宣言

const NSKeyValueChangeKey NSKeyValueChangeKindKey;

Discussion 議論

A value of NSKeyValueChangeSetting indicates that the observed object has received a setValue:forKey: message, or that the key-value-coding-compliant set method for the key has been invoked, or that one of the willChangeValueForKey: or didChangeValueForKey: methods has otherwise been invoked. NSKeyValueChangeSettingの値は、監視されたオブジェクトがsetValue:forKey:メッセージを受け取ったこと、またはキーに対するキー値コーディング対応の設定メソッドが発動されたこと、またはwillChangeValueForKey:didChangeValueForKey:メソッドうちの1つがさもなくば発動されたことを指し示します。

A value of NSKeyValueChangeInsertion, NSKeyValueChangeRemoval, or NSKeyValueChangeReplacement indicates that mutating messages have been sent a key-value observing compliant collection proxy, or that one of the key-value-coding-compliant collection mutation methods for the key has been invoked, or a collection will change or did change method has been otherwise been invoked. NSKeyValueChangeInsertionNSKeyValueChangeRemoval、またはNSKeyValueChangeReplacementの値は、可変メッセージがキー値監視対応のコレクションプロキシを送られたこと、またはそのキーに対するキー値コーディング対応のコレクション変更メソッドの1つが発動されたこと、またはcollection will changeやdid changeメソッドがさもなくば発動されたことを指し示します。

You can use the unsignedIntegerValue method on the NSNumber object to retrieve the value of the change kind. あなたは、unsignedIntegerValueメソッドをNSNumberオブジェクト上で使うことでその変更の種類の値を取ってくることができます。