Type Property 型プロパティ

NSManagedObjectContextObjectsDidChange

A notification of changes made to managed objects associated with this context. この文脈と結び付けられた管理オブジェクトになされた変更の通知。

Declaration 宣言

static let NSManagedObjectContextObjectsDidChange: NSNotification.Name

Discussion 議論

The notification is posted during processPendingChanges(), after the changes have been processed, but before it is safe to call save() again (if you try, you will generate an infinite loop). 通知は、processPendingChanges()の間に投函されます、変更が処理されてしまった後で、しかしsave()を再び呼び出しても安全である前に(あなたが試みるならば、あなたは無限ループを生成するでしょう)。

The notification object is the managed object context. The userInfo dictionary contains the following keys: NSInsertedObjectsKey, NSUpdatedObjectsKey, and NSDeletedObjectsKey. 通知オブジェクトは、管理オブジェクト文脈です。userInfo辞書は以下のキーを含みます:NSInsertedObjectsKeyNSUpdatedObjectsKey、そしてNSDeletedObjectsKey

Note that this notification is posted only when managed objects are changed; it is not posted when managed objects are added to a context as the result of a fetch. この通知は管理オブジェクトが変更される時にのみに投函されます;それは管理オブジェクトが文脈に取得の結果として加えられる時には投函されません。

See Also 参照

Core Data