我正在寻找一种方法来跟踪NSManagedObject的属性更改。
目前,我使用NSNotifactionCenter查看managedobjectcontext的更改:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleDataModelChange:) name:NSManagedObjectContextObjectsDidChangeNotification object:self.managedObjectContext];
它会触发handleDataModelChange Methode,如下所示:
- (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]);
}
}
}
}
如果对象发生更改,则会记录该对象的新属性。如何实现获取旧属性值的方法?
答案 0 :(得分:6)
来自NSManagedObject Class Reference:
返回一个字典,其中包含自上次提取或保存接收器以来已更改的持久属性的键和(新)值。
返回一个字典,其中包含自上次发布NSManagedObjectContextObjectsDidChangeNotification
以来已更改的持久属性的键和旧值。