0

我正在尝试使用 Mantle 将 JSON 存储到 Coredata 中,并且我有以下代码:

        PPCoreDataStack *coreDataStack = [PPCoreDataStack defaultStack]; //my custom wrapper for CoreData a simple accessor really

        NSManagedObject *mob = [MTLManagedObjectAdapter managedObjectFromModel:userModel insertingIntoContext:coreDataStack.managedObjectContext error:&error];

        if(mob) {
            NSLog(@"Mob: %@", mob);
        } else {
            NSLog(@"Mob Error: %@", [error localizedDescription]);
        }

        [coreDataStack saveContext];

我收到以下错误:

        Mob Error: Could not serialize managed object

我不确定为什么。我是核心数据的新手,所以请帮助我了解这里可能出了什么问题。

4

1 回答 1

0

好的,这只是愚蠢的。该实体不在模型中。

于 2014-08-06T23:08:32.000 回答