Discussion
議論
The notification object is the managed object context. The userInfo dictionary contains the following keys: NSInsertedObjectsKey
, NSUpdatedObjectsKey
, and NSDeletedObjectsKey
.
通知オブジェクトは、管理オブジェクト文脈です。userInfo辞書は以下のキーを含みます:NSInsertedObjectsKey
、NSUpdatedObjectsKey
、そしてNSDeletedObjectsKey
。
You can only use the managed objects in this notification on the same thread on which it was posted.
あなたは、管理オブジェクトをこの通知においてそれが投函されたのと同じスレッド上で使用出来るだけです。
You can pass the notification object to mergeChanges(fromContextDidSave:)
on another thread, however you must not use the managed object in the user info dictionary directly on another thread. For more details, see Concurrency with Core Data.
あなたは、通知オブジェクトをmergeChanges(fromContextDidSave:)
に別のスレッド上で渡すことができます、しかしながらあなたは管理オブジェクトをユーザ情報辞書において直接に別のスレッド上で使ってはいけません。さらなる詳細として、Concurrency with Core Data を見てください。