Instance Method インスタンスメソッド

didChangeValueForKey:withSetMutation:usingObjects:

Informs the observed object that the specified change was made to a specified unordered to-many relationship.

Declaration 宣言

- (void)didChangeValueForKey:(NSString *)key 
             withSetMutation:(NSKeyValueSetMutationKind)mutationKind 
                usingObjects:(NSSet *)objects;

Parameters パラメータ

key

The name of a property that is an unordered to-many relationship

mutationKind

The type of change that was made.

objects

The objects that were involved in the change (see NSKeyValueSetMutationKind).

Discussion 解説

Use this method when implementing key-value observer compliance manually. Calls to this method are always paired with a matching call to willChangeValueForKey:withSetMutation:usingObjects:.

Special Considerations 特別な注意事項

You rarely need to override this method in subclasses, but if you do, be sure to call super.

See Also 参照

Notifying Observers of Changes