我正在寻找一种方法来跟踪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]); } } } }
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。