微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ios – 跟踪NSManagedObject的属性更改

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

如果对象发生更改,则会记录该对象的新属性.如何获得获取属性值的方法

解决方法

NSManagedObject Class Reference

changedValues

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

changedValuesForCurrentEvent

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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐