gpt4 book ai didi

ios - 跟踪 NSManagedObject 的属性变化

转载 作者:可可西里 更新时间:2023-11-01 05:29:47 26 4
gpt4 key购买 nike

我正在寻找一种方法来跟踪 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]);
}
}
}
}

如果对象发生变化,它会记录对象的新属性。我怎样才能实现同时获取旧属性值的方法?

最佳答案

来自NSManagedObject Class Reference :

改变值

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

changedValuesForCurrentEvent

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

关于ios - 跟踪 NSManagedObject 的属性变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19500411/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com