static let indexesKey : NSKeyValueChangeKey
If the value of the
kindKey
entry is NSKeyValueChange.insertion
, NSKeyValueChange.removal
, or NSKeyValueChange.replacement
, the value of this key is an NSIndexSet
object that contains the indexes of the inserted, removed, or replaced objects.
kindKey
登録項目の値がNSKeyValueChange.insertion
、NSKeyValueChange.removal
、またはNSKeyValueChange.replacement
ならば、このキーの値はNSIndexSet
オブジェクトです、それは挿入、除去、または置換されたオブジェクトのインデックスを含みます。
static let kindKey : NSKeyValueChangeKey
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つに対応している値を含み、どんな種類の変更が起こったかを指し示しています。
static let newKey : NSKeyValueChangeKey
If the value of the
kindKey
entry is NSKeyValueChange.setting
, and new
was specified when the observer was registered, the value of this key is the new value for the attribute.
kindKey
登録項目がNSKeyValueChange.setting
、そしてオブザーバが登録された時new
が指定されたならば、このキーの値は属性に対する新しい値です。
static let notificationIsPriorKey : NSKeyValueChangeKey
If the
prior
option was specified when the observer was registered this notification is sent prior to a change.
オブザーバが登録された時prior
オプションが指定されたならば、この通知は変更に先立って発信されます。
static let oldKey : NSKeyValueChangeKey
If the value of the
kindKey
entry is NSKeyValueChange.setting
, and old
was specified when the observer was registered, the value of this key is the value before the attribute was changed.
kindKey
登録項目の値がNSKeyValueChange.setting
ならば、そしてオブザーバが登録された時old
が指定されたならば、このキーの値は属性が変更されたよりも前の値です。