ios - 核心数据:为啥有时会出现“Entity name must not be nil”?

Posted

技术标签:

【中文标题】ios - 核心数据:为啥有时会出现“Entity name must not be nil”?【英文标题】:ios - core data: Why does "Entity name must not be nil" sometimes occur?ios - 核心数据:为什么有时会出现“Entity name must not be nil”? 【发布时间】:2011-04-10 14:40:15 【问题描述】:

大家好。我正在编写一个 ios 应用程序,其中包含多个子视图,可以通过按一下按钮单独创建。每个子视图都有一个“组”实例,即通过核心数据保存的实体。 'group' 与 'contact' 是一对多的关系。当联系人被拖到子视图上时,它会保存在给定“组”的核心数据中。这可以正常工作 3 次。每 4 次将联系人拖到另一个子视图时,应用程序就会崩溃。

代码如下:

- (void)fetchContacts 
if(personRecordIDsArray==nil) 
    personRecordIDsArray = [[NSMutableArray alloc] init];
    NSFetchRequest *request = [[NSFetchRequest alloc] init];
    NSEntityDescription *entity = [NSEntityDescription entityForName:@"Contact" inManagedObjectContext:managedObjectContext];
    [request setEntity:entity];
    [entity release];

    NSError *error = nil;
    NSMutableArray *mutableFetchResults = [[[managedObjectContext executeFetchRequest:request error:&error] mutableCopy] autorelease];
    if (mutableFetchResults == nil) 
        // Handle the error.
    
    [error release];
    [request release];
    for (Contact *contact in mutableFetchResults) 
        if(contact.belongsToGroup == group) 
            [personRecordIDsArray addObject:contact.recordId];
        
    
   
NSLog(@"%d", [personRecordIDsArray count]);

- (void)addContactsToGroup:(NSArray*)arrayOfPeople 
[self fetchContacts];
for(int i = 0; i<[arrayOfPeople count]; i++) 
    ABRecordRef person = [arrayOfPeople objectAtIndex:i];
    NSNumber *personRecordId = [NSNumber numberWithInteger:ABRecordGetRecordID(person)];
    if(![self groupContainsContactWithRecordID:personRecordId]) 
        NSString *compositeName = (NSString *)ABRecordCopyCompositeName(person);
//Here is when the error occurs:
        Contact *contact = (Contact*)[NSEntityDescription insertNewObjectForEntityForName:@"Contact" inManagedObjectContext:managedObjectContext];
        contact.compositeName = compositeName;
        contact.recordId = personRecordId;
        contact.belongsToGroup = group;
        NSError *error = nil;
        if (![managedObjectContext save:&error]) 
            NSLog(@"Error in addContactsToGroup!");
        [error release];    
        [personRecordIDsArray addObject:personRecordId];
    


当尝试将联系人添加到组时,错误提示:

2011-04-10 16:16:36.152 TestApp[796:207] * 由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“实体名称不得为 nil。” p>

我真的玩了一段时间,也无法在互联网上找到类似的东西。有趣的是,该错误总是在第四次将联系人添加到不同的子视图时发生。有人知道我该如何解决这个问题吗?我真的没有想法......

哦,调试器说:

#0  0x956e2156 in __kill
#1  0x956e2148 in kill$UNIX2003
#2  0x95774899 in raise
#3  0x9578a9b8 in abort
#4  0x91de4fda in __gnu_cxx::__verbose_terminate_handler
#5  0x0141c4e7 in _objc_terminate
#6  0x91de317a in __cxxabiv1::__terminate
#7  0x91de31ba in std::terminate
#8  0x91de32b8 in __cxa_throw
#9  0x0141c635 in objc_exception_throw
#10 0x00ce1486 in +[NSManagedObject(_PFDynamicAccessorsAndPropertySupport) classForEntity:]
#11 0x00ce11f6 in _PFFastEntityClass
#12 0x00d06e73 in +[NSEntityDescription insertNewObjectForEntityForName:inManagedObjectContext:]
#13 0x00009a02 in -[GroupViewController addContactsToGroup:] at GroupViewController.m:152
#14 0x00002f31 in -[GrouperViewController dragingWillEnd:forContacts:atPosition:] at GrouperViewController.m:98
#15 0x0000cbb8 in -[ContactsTableViewController longPressOnView:] at ContactsTableViewController.m:65

【问题讨论】:

奇怪!您可以尝试不将 (Contact*) 转换为 insertNewEntityForName 方法吗?我以前从未见过它是这样构造的,即使它有点道理,你也不需要它。看看有没有区别? 【参考方案1】:

我猜测问题在于托管对象上下文已与托管对象模型分离,这使得 NSEntityDescription 无法找到并返回应表示 Contact 实体的类。

最可能的原因是初始化托管对象上下文但未设置其模型或以某种方式将模型设置为 nil。我建议在调用失败之前完全记录托管对象上下文。特别要记录它的模型,以确保它有一个模型,并且每次调用都保持相同的模型。

【讨论】:

以上是关于ios - 核心数据:为啥有时会出现“Entity name must not be nil”?的主要内容,如果未能解决你的问题,请参考以下文章

为啥向核心数据实体添加双重属性会导致远距离相关实体中的属性冲突出现 NSInternalInconsistencyException?

iOS 中的核心数据故障

为啥在 Windows 上的 Chrome 或 Safari 上查看时,html 文本有时会出现乱码?

为啥 React Native iOS 模拟器的重新加载快捷方式有时会停止工作?

为啥显示自绘无模对话框时会出现任务栏? .. 有时?

iOS MagicalRecord 之谜。为啥在 truncateAll 后重新启动时我的数据会重新出现?