<!--
{
  "availability" : [
    "iOS: 5.0.0 - 10.0.0",
    "iPadOS: 5.0.0 - 10.0.0",
    "macCatalyst: 13.1.0 - 13.1.0",
    "macOS: 10.7.0 - 10.12.0",
    "visionOS: 1.0.0 - 1.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "CoreData",
  "identifier" : "/documentation/CoreData/NSPersistentStoreDidImportUbiquitousContentChangesNotification",
  "metadataVersion" : "0.1.0",
  "role" : "Global Variable",
  "symbol" : {
    "kind" : "Global Variable",
    "modules" : [
      "Core Data"
    ],
    "preciseIdentifier" : "c:@NSPersistentStoreDidImportUbiquitousContentChangesNotification"
  },
  "title" : "NSPersistentStoreDidImportUbiquitousContentChangesNotification"
}
-->

# NSPersistentStoreDidImportUbiquitousContentChangesNotification

Posted after records are imported from the ubiquitous content store.

```
extern NSString * const NSPersistentStoreDidImportUbiquitousContentChangesNotification;
```

## Discussion

The notification’s `object` is set to the `NSPersistentStoreCoordinator` instance which registered the store. The notification’s `userInfo` dictionary contains the same keys as the [`NSManagedObjectContextObjectsDidChangeNotification`](/documentation/CoreData/NSManagedObjectContextObjectsDidChangeNotification) notification ([`NSInsertedObjectsKey`](/documentation/CoreData/NSInsertedObjectsKey), [`NSUpdatedObjectsKey`](/documentation/CoreData/NSUpdatedObjectsKey), [`NSDeletedObjectsKey`](/documentation/CoreData/NSDeletedObjectsKey)), however the values are sets of [`NSManagedObjectID`](/documentation/CoreData/NSManagedObjectID) objects rather than sets of [`NSManagedObject`](/documentation/CoreData/NSManagedObject) objects.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)