我的应用程序中有一个核心数据。实体之一是Details
。Details
有 2 个名为的属性guid
,另一个是details
. 这两个属性都包含很多值。在获取时,我必须采取details
相应的guid
. 我可以使用 guid 获取保存在其他属性中的值吗?如何连接这两个属性?这就是我将值保存到 2 个属性的方式。
ReaderAppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
NSManagedObjectContext *context = [appDelegate managedObjectContext];
NSManagedObject *object;
object = [NSEntityDescription insertNewObjectForEntityForName:@"Details" inManagedObjectContext:context];
[object setValue: [[activity objectForKey:@"category_guid"]stringValue]forKey:@"guid"];
[object setValue:[activity objectForKey:@"details"] forKey:@"details"];
NSError *error;
if (![context save:&error]) {
NSLog(@"Error save base");
}
else {
NSLog(@"saved");
}