+ entityForName:找不到名为“Entityname”的实体

时间:2013-10-15 20:33:24

标签: ios core-data

我得到了这部分代码:

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'的实体

实体和属性确实存在。

图:

enter image description here

0 个答案:

没有答案