---
title: didMergeChangesObjectIDsNotification
framework: coredata
role: symbol
role_heading: Type Property
path: coredata/nsmanagedobjectcontext/didmergechangesobjectidsnotification
---

# didMergeChangesObjectIDsNotification

A notification that posts after a context finishes merging changes from another notification.

## Declaration

```swift
static let didMergeChangesObjectIDsNotification: Notification.Name
```

## Discussion

Discussion This notification’s object is the merged context. Don’t peform any asynchronous work or block the calling thread. NSManagedObjectContext posts notifications to the same thread that creates it. The userInfo dictionary contains the identifiers of the inserted, updated, deleted, refreshed, and invalidated managed objects. For the keys to access those objects, see NSManagedObjectContext.NotificationKey. It’s safe to capture the dictionary’s contents.

## See Also

### Managing notifications

- [didChangeObjectsNotification](coredata/nsmanagedobjectcontext/didchangeobjectsnotification.md)
- [NSManagedObjectContextObjectsDidChange](foundation/nsnotification/name-swift.struct/nsmanagedobjectcontextobjectsdidchange.md)
- [didSaveObjectsNotification](coredata/nsmanagedobjectcontext/didsaveobjectsnotification.md)
- [NSManagedObjectContextDidSave](foundation/nsnotification/name-swift.struct/nsmanagedobjectcontextdidsave.md)
- [willSaveObjectsNotification](coredata/nsmanagedobjectcontext/willsaveobjectsnotification.md)
- [NSManagedObjectContextWillSave](foundation/nsnotification/name-swift.struct/nsmanagedobjectcontextwillsave.md)
- [NSInsertedObjectsKey](coredata/nsinsertedobjectskey.md)
- [NSUpdatedObjectsKey](coredata/nsupdatedobjectskey.md)
- [NSDeletedObjectsKey](coredata/nsdeletedobjectskey.md)
- [NSRefreshedObjectsKey](coredata/nsrefreshedobjectskey.md)
- [NSInvalidatedObjectsKey](coredata/nsinvalidatedobjectskey.md)
- [NSInvalidatedAllObjectsKey](coredata/nsinvalidatedallobjectskey.md)
- [didSaveObjectIDsNotification](coredata/nsmanagedobjectcontext/didsaveobjectidsnotification.md)
- [NSManagedObjectContext.NotificationKey](coredata/nsmanagedobjectcontext/notificationkey.md)
