4

我正在寻找一种方法来跟踪 NSManagedObject 的属性变化。

目前我使用 NSNotifactionCenter 来查看我的 managedobjectcontext 的变化:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleDataModelChange:) name:NSManagedObjectContextObjectsDidChangeNotification object:self.managedObjectContext];

它会触发如下所示的 handleDataModelChange 方法:

- (void)handleDataModelChange:(NSNotification *)note
{
    NSSet *updatedObjects = [[note userInfo] objectForKey:NSUpdatedObjectsKey];

    if (updatedObjects.count > 0) {
        for (NSManagedObject *obj in updatedObjects.allObjects) {
            NSLog(@"Object updated: %@ with values:",obj.entity.name);
            NSDictionary *theAttributes = [self getAllAttributesOf:obj];
            for (NSString *attributeName in theAttributes) {
                NSLog(@"Name: %@ : %@",attributeName,[obj valueForKey:attributeName]);
            }
        }
    }
}

如果对象发生更改,这将记录对象的新属性。我怎样才能实现获取旧属性值的方法?

4

1 回答 1

6

NSManagedObject 类参考

改变值

返回一个字典,其中包含自上次获取或保存接收器以来已更改的持久属性的键和(新)值。

changedValuesForCurrentEvent

返回一个字典,其中包含自上次发布以来已更改的持久属性的键和旧值NSManagedObjectContextObjectsDidChangeNotification

于 2013-11-27T09:51:31.763 回答