6

我有一个包含餐厅和气氛的核心数据结构,其中餐厅可以有很多气氛,而气氛可以有很多餐厅。所以我建立了两个多对多的关系,两者都是苹果文档中所述的逆向关系,形成了一个多对多的关系。

但是,我在将对象添加到创建的集合时遇到了麻烦。例如,当我使用这样的代码时,

Atmosphere *atmosphere = [Atmosphere atmosphere:aId inManagedObjectContext:context];
[restaurant addAtmospheresObject:atmosphere];

它崩溃并出现一个奇怪的错误:

EXC_BREAKPOINT (code=EXC_I386_BPT, subcode=0x0)

请问大家有没有遇到过这种情况?

4

1 回答 1

12

看起来您没有atmosphere正确创建对象。试试这个:

Atmosphere *atmosphere = [NSEntityDescription 
   insertNewObjectForEntityForName:@"Atmosphere" 
            inManagedObjectContext:context];
// further configuration
if (restaurant) {
   [restaurant addAtmospheresObject:atmosphere];
}
于 2012-04-07T17:16:56.270 回答