<!--
{
  "availability" : [
    "iOS: 3.0.0 -",
    "iPadOS: 3.0.0 -",
    "macCatalyst: 13.1.0 -",
    "macOS: 10.4.0 -",
    "tvOS: 9.0.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 2.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Foundation",
  "identifier" : "/documentation/Foundation/NSNotification/Name-swift.struct/NSManagedObjectContextObjectsDidChange",
  "metadataVersion" : "0.1.0",
  "role" : "Type Property",
  "symbol" : {
    "kind" : "Type Property",
    "modules" : [
      "Foundation"
    ],
    "preciseIdentifier" : "c:@NSManagedObjectContextObjectsDidChangeNotification"
  },
  "title" : "NSManagedObjectContextObjectsDidChange"
}
-->

# NSManagedObjectContextObjectsDidChange

A notification that posts when there are changes to context’s registered managed objects.

```
static let NSManagedObjectContextObjectsDidChange: NSNotification.Name
```

## Discussion

> Note:
> This notification posts only when there are changes to the context’s registered managed objects. It doesn’t post when a fetch adds managed objects to the context.

This notification’s `object` property is the changed managed object context. Don’t peform any asynchronous work or block the calling thread. <doc://com.apple.documentation/documentation/CoreData/NSManagedObjectContext> posts notifications to the same thread that creates it.

The `userInfo` dictionary contains the inserted, updated, deleted, and invalidated managed objects. For the keys to access those objects, see <doc://com.apple.documentation/documentation/CoreData/NSManagedObjectContext/NotificationKey>. Don’t capture the dictionary’s contents.

---

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)