一个非常简单的问题,我无法找到答案。我将我的核心数据实体子类化为Area
和GPS
,我正在使用来自JSON文件的数据进行设置。这看起来很好。但是如何设置两个新创建的Entity对象之间的关系?
NSManagedObjectContext *context = [self managedObjectContext];
Area *area = [NSEntityDescription
insertNewObjectForEntityForName:@"Area"
inManagedObjectContext:context];
GPS *gps = [NSEntityDescription
insertNewObjectForEntityForName:@"GPS"
inManagedObjectContext:context];
NSDictionary *attributes = [[area entity] attributesByName];
for (NSString *attribute in attributes) {
for (NSDictionary * tempDict in jsonDict) {
id value = [tempDict objectForKey:attribute];
if ([value isEqual:[NSNull null]]) {
continue;
}
if ([attribute isEqualToString:@"latitude"] || [attribute isEqualToString:@"longtitude"]) {
[gps setValue:value forKey:attribute];
}
else {
[area setValue:value forKey:attribute];
}
}
[area setAreaGPS:gps]; // Set up the relationship
}
从Area
到GPS
的关系名称为areaGPS
错误:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Unacceptable type of value for to-many relationship: property = "areaGPS"; desired type = NSSet; given type = GPS; value = <GPS: 0x369540>
我在几个例子中看到了[area setAreaGPS:gps];
的这种语法,但显然我不理解如何正确使用它。
答案 0 :(得分:3)
您已将关系设置为多对多关系。根据您定义区域的方式,这可能是也可能不是一个好的选择。如果一个区域可以有多个GPS对象,那么你就是好的。您需要更改的只是[area setAreaGPS:gps]
到:
NSMutableSet *mutableGPS = [area.areaGPS mutableCopy];
[mutableGPS addObject:gps];
[area setAreaGPS:mutableGPS];
如果您只想要一个与Area对象关联的GPS对象,则必须将关系更改为不是多对多关系,而是一对一关系。在这种情况下,您无需更改任何代码(重新生成NSManagedObject
子类除外)。