NSManagedObject の属性の変更を追跡する方法を探しています。
現在、NSNotifactionCenter を使用して、管理オブジェクト コンテキストの変更を確認しています。
[[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]);
}
}
}
}
これにより、オブジェクトの新しい属性が変更された場合にログに記録されます。古い属性値も取得する方法をどのように達成できますか?