Coredata错误setObjectForKey:对象不能为零

时间:2013-10-05 08:57:19

标签: iphone ios core-data

我正在尝试检查我的coredata存储中是否有任何数据作为我的应用程序的恢复类型。基本上,如果用户处于最终视图中,则coredata中存在一些他们不断更新的数据。

所以他们在最终视图中然后应用程序中断或者让它进入睡眠状态,然后应用程序从内存中删除。

当下次加载应用程序时,我检查我的coredata对象以查看是否有任何值如果有提示用户告诉他们有未完成的工作你想从你离开的地方继续接收新的。< / p>

如果他们想要重新开始我会转储当前在我的核心数据中的任何内容并允许它们工作。否则我跳到最后一个视图加载coredata中的数据并允许它们继续工作。

然而,这就是错误发生的地方我检查我的coredata是这样的。

NSMutableArray *checkFinMutableArray = [coreDataController readFin];

    if ([checkFinMutableArray count] > 0) {
        //Show mesage, recover or not?
        UIAlertView *alert = [[UIAlertView alloc] init];
        [alert setTitle:@"Selected projects avalible"];
        [alert setMessage:@"It appears that you have unfinished projects from a previous session. Would you like to continue working on these projects?"];
        [alert setDelegate:self];
        [alert addButtonWithTitle:@"Yes"];
        [alert addButtonWithTitle:@"No"];
        [alert show];
    }

这是我的coredata对象的样子

 - (NSMutableArray *)readFinDimensions {
        NSManagedObjectContext *context = [self managedObjectContext];


        NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
        NSEntityDescription *entity = [NSEntityDescription entityForName:@"Project" inManagedObjectContext:context];
        [fetchRequest setEntity:entity];

        NSError *error;

        NSMutableArray *projectDictionaryArray = [[NSMutableArray alloc] init];


        NSArray *fetchedObjects = [context executeFetchRequest:fetchRequest error:&error];


        for (ProjectList *projectList in fetchedObjects) {

            NSMutableDictionary *tempProjectDictionaryArray = [[ NSMutableDictionary alloc] init];

            [tempProjectDictionaryArray setObject:project.proj forKey:@"Proj"]; // this is where the ap dies
            [tempProjectDictionaryArray setObject:project.desc forKey:@"Desc"];

            [projectDictionaryArray addObject:tempProjectDictionaryArray];
        }

        return projectDictionaryArray;
    }

这就是错误的样子

 *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** setObjectForKey: object cannot be nil (key: Proj)'

任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:2)

可能是您的代码必须是:

    for (ProjectList *projectList in fetchedObjects) {

        NSMutableDictionary *tempProjectDictionaryArray = [[ NSMutableDictionary alloc] init];

        [tempProjectDictionaryArray setObject:projectList.proj forKey:@"Proj"]; // this is where the ap dies
        [tempProjectDictionaryArray setObject:projectList.desc forKey:@"Desc"];

        [projectDictionaryArray addObject:tempProjectDictionaryArray];
    }

其中project.proj由projectList.proj更改(也适用于.desc)。

答案 1 :(得分:0)

这意味着project.proj位于<{p}的nil

[tempProjectDictionaryArray setObject:project.proj forKey:@"Proj"];

NS(Mutable)Dictionary 无法nil存储为值,因此您应该检查,例如。

if (project.proj != nil) {
    [tempProjectDictionaryArray setObject:project.proj forKey:@"Proj"];
}

或者,可以使用

tempProjectDictionaryArray = [project dictionaryWithValuesForKeys:@[@"Proj", @"Desc"]];

几乎相同
[tempProjectDictionaryArray setObject:project.proj forKey:@"Proj"];
[tempProjectDictionaryArray setObject:project.desc forKey:@"Desc"];

但是将nil值替换为[NSNull null],因此您可以删除这些值 来自字典

NSArray *keysForNullValues = [tempProjectDictionaryArray allKeysForObject:[NSNull null]];
[tempProjectDictionaryArray removeObjectsForKeys:keysForNullValues];