我得到了这部分代码:
nwtAppDelegate *appDelegate =(nwtAppDelegate *) [[UIApplication sharedApplication] delegate];
NSManagedObjectContext *context =
[appDelegate managedObjectContext];
NSManagedObject *newContact;
newContact = [NSEntityDescription
insertNewObjectForEntityForName:@"EN"
inManagedObjectContext:context];
[newContact setValue:@"laaa" forKey:@"b_1_1"];
NSError *error;
[context save:&error];
但是我收到此错误 + entityForName:找不到名为'Entityname'的实体。
实体和属性确实存在。
图: