我有一个餐厅和氛围的核心数据结构,餐厅可以有很多的气氛,气氛可以有很多餐厅.所以我建立了两对多关系,两者都是苹果文档中所述的相反,形成了多对多的关系.
但是我在创建的集合中添加对象时遇到了麻烦.例如,当我使用这样的代码时,
Atmosphere *atmosphere = [Atmosphere atmosphere:aId inManagedObjectContext:context]; [restaurant addAtmospheresObject:atmosphere];
它崩溃了一个奇怪的错误:
EXC_BREAKPOINT (code=EXC_I386_BPT,subcode=0x0)
有没有人遇到过这个?
解决方法
看起来你没有正确地创建你的氛围对象.试试这个:
Atmosphere *atmosphere = [NSEntityDescription insertNewObjectForEntityForName:@"Atmosphere" inManagedObjectContext:context]; // further configuration if (restaurant) { [restaurant addAtmospheresObject:atmosphere]; }