我正在尝试将 Vocabulary 对象添加到 Group 类。
我尝试使用 [Group addObject: VocabularyObject] 方法执行此操作无济于事。
AppDelegate *delegate = [[AppDelegate alloc]init];
Group *group = [_arr objectAtIndex:indexPath.row]; //I have an array with 'Group' objects
//create vocabulary item
Vocabulary *vocabularyEntity = [NSEntityDescription insertNewObjectForEntityForName:@"Vocabulary" inManagedObjectContext:[delegate managedObjectContext]];
vocabularyEntity.prompt = @"Here is a cool prompt";
vocabularyEntity.definition = @"Here is an even cooler definition";
[delegate saveContext];
[group addTermsObject:vocabularyEntity];
我收到此错误,我使用了异常断点,错误来自 addTermsObject 调用。
[__NSDictionaryI addTermsObject:]: unrecognized selector sent to instance 0x74c4f70
我要添加的对象绝对是一个词汇对象,所以我不确定问题可能是什么。
有任何想法吗?
谢谢!