MonobjcMonobjc Documented Class Library
NSManagedObjectContextObjectsDidChangeNotification Field
NamespacesMonobjc.CoreDataNSManagedObjectContextNSManagedObjectContextObjectsDidChangeNotification

Posted when values of properties of objects contained in a managed object context are changed.

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).

The notification object is the managed object context. The userInfo dictionary contains the following keys: NSInsertedObjectsKey, NSUpdatedObjectsKey, and 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.

Available in Mac OS X v10.4 and later.

Declaration Syntax
C#Visual BasicVisual C++
public static readonly NSString NSManagedObjectContextObjectsDidChangeNotification
Public Shared ReadOnly NSManagedObjectContextObjectsDidChangeNotification As NSString
public:
static initonly NSString^ NSManagedObjectContextObjectsDidChangeNotification
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.AppKit (Module: Monobjc.AppKit)