added changed keys to object changes notification

This commit is contained in:
John Rommel Estropia
2015-05-09 23:59:30 +09:00
parent 202ec371f2
commit a5be0fbf67
5 changed files with 123 additions and 60 deletions

View File

@@ -35,7 +35,7 @@ public protocol ManagedObjectObserver: class {
func managedObjectWillUpdate(objectController: ManagedObjectController<EntityType>, object: EntityType)
func managedObjectWasUpdated(objectController: ManagedObjectController<EntityType>, object: EntityType)
func managedObjectWasUpdated(objectController: ManagedObjectController<EntityType>, object: EntityType, changedPersistentKeys: Set<KeyPath>)
func managedObjectWasDeleted(objectController: ManagedObjectController<EntityType>, object: EntityType)
}