0

我目前正在尝试将 NSMutabledictionary 键和对象保存在 plist 文件中。我的键是整数,所以我使用 NSNumber 将它们放入 writeToFile 函数。

即使进行了更改,我也无法在 plist 查找中找到任何已保存的数据。我想 NSNumber 指针有问题,因为当我使用字符串时它可以工作。

您知道我的代码中缺少什么吗?

    NSMutableDictionary *dictionnaireNoms = [[NSMutableDictionary alloc] initWithCapacity:40];
    NSNumber *nombre = [[NSNumber alloc] initWithInteger:dictionnaireNoms.count];        
    NSString *nomCommerce = text.text;
    [dictionnaireNoms setObject:nomCommerce forKey:nombre];

    //2. Sauvegarde du nom dans un fichier
    [saveDicoCommerce enregisterNom:dictionnaireNoms];


- (void)enregisterNom:(NSMutableDictionary*)nom
{
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSLog(@"%@", documentsDirectory);
    NSString *pathNom = [documentsDirectory stringByAppendingPathComponent:@"NomsDeCommerces.plist"];
    if (!documentsDirectory) {
        NSLog(@"Documents directory not found!");
        return;
    }
    [nom writeToFile:pathNom atomically:YES];
    if(![[NSFileManager defaultManager] fileExistsAtPath:pathNom])
    {
        NSLog(@"file not found");
        return;
    }

}
4

2 回答 2

3

NSDictionary如果它只包含字符串键,则只能直接写自己。它证实了您尝试使用

[[NSPropertyListSerialization dataWithPropertyList:nom format:NSPropertyListBinaryFormat_v1_0 options:0 error:nil] writeToFile:pathNom atomically:NO];`

输出是:

属性列表对格式无效:200(属性列表字典可能只有 CFStrings 键,而不是 'CFNumber')

但是,如果您使用 序列化它,您可以存储NSDictionary包含NSNumber键的对象NSCoding。替换这个:

[nom writeToFile:pathNom atomically:YES];

和:

[NSKeyedArchiver archiveRootObject:nom toFile:pathNom];

要读取创建的文件,请使用:

NSDictionary *nom2 = [NSKeyedUnarchiver unarchiveObjectWithFile:pathNom];

有关档案的更多信息,请参阅档案和序列化编程指南

于 2012-04-12T14:42:37.137 回答
0

为什么要分配 NSNumber?试试这个 [your_dictionary setValue:[NSNumber numberWithInt:your_int]];

于 2012-04-12T14:30:45.897 回答