1

我调查了其他用户类似的问题,但我仍然找不到我的代码的问题。

这是问题所在。

当应用程序启动时,我调用一个名为 setupDirectory 的方法,该方法创建(或从应用程序包中复制,如果需要)一个用于名称的 plist 和一个用于配置的 plist:

@implementation Data

static NSString * NamePlist;
static NSString * ConfigPlist;

+(void) setupDirectory
{

    //Names
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString * dataPath = [paths objectAtIndex:0];
    dataPath = [dataPath stringByAppendingPathComponent:@"NamesPlist.plist"];
    NSFileManager *fileManager = [NSFileManager defaultManager];

    if (![fileManager fileExistsAtPath:dataPath]) {
        NSString *sourcePath = [[NSBundle mainBundle] pathForResource:@"NamesPlist" ofType:@"plist"];
        [fileManager copyItemAtPath:sourcePath toPath:dataPath error:nil];
    }

    //Config
    NSString *configPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
    configPath = [configPath stringByAppendingPathComponent:@"ConfigPlist.plist"];

    if (![fileManager fileExistsAtPath:configPath]) {
        NSString *sourcePath = [[NSBundle mainBundle] pathForResource:@"ConfigPlist" ofType:@"plist"];
        [fileManager copyItemAtPath:sourcePath toPath:configPath error:nil];
    }

NamePlist = dataPath;
ConfigPlist = configPath;

}

然后,当我需要添加名称时,我调用 Add name 方法将名称添加到 plist:

+(void) addName: (NSString *) name andConfigs: (NSArray *) configs
{
    // Name

    // Get the old content of the plist file
    NSDictionary *oldContent = [NSDictionary dictionaryWithContentsOfFile:Namelist];
    // Copy the old content of the plist file to a new dictionary
    NSMutableDictionary * newContent = [oldContent mutableCopy];
    //Add the new config to the dictionary
    [newContent setObject:[NSNull null] forKey:name];
    // Set the new dictionary as the plist file
    [newContent writeToFile:NamePlist atomically:YES];

    //Configs

    oldContent = [NSDictionary dictionaryWithContentsOfFile:ConfigPlist];
    // Copy the old content of the plist file to a new dictonary
    newContent = [oldContent mutableCopy];
    //Add the new config to the dictionary
    [newContent setObject:configs forKey:name];
    // Set the new dictionary as the plist file
    [newContent writeToFile:ConfigPlist atomically:YES];
}

但是当我需要从 plist 中获取信息时,我什么也没得到,所以它没有写?

+(NSArray *) getAllNames
{
    NSDictionary * names = [NSDictionary dictionaryWithContentsOfFile:NamePlist];
    NSArray * allNames = [(NSArray*) [names allKeys] sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)];
    return allNames;
}

GetallNames 返回一个空数组。

对不起,如果这个问题已经回答了,但我真的很寻找但仍然不知道出了什么问题

编辑1:

我使用 writeToFile 的返回值来检查是否有任何失败。我对来自 configsPlist 的 writeToFile 得到了肯定,但对来自 NamesPlist 的 writeToFile 得到否定。所以我认为配置工作正常,但不是 namesPlist

编辑2:

使用调试器我注意到![fileManager fileExistsAtPath:configPath]!fileManager fileExistsAtPath:dataPath]返回NO,所以我实际上并没有进入这些 if 语句。

解决方案

好的,我再给它一次机会,并尝试使用字符串而不是 [NSNull null] 创建,现在它可以工作了......我想我应该使用 [NSNull null] 创建一个带有空对象的字典

4

1 回答 1

0

我建议转到文档目录:/Users/administrator/Library/Application Support/iPhone Simulator/YourApp/Documents/ 并在每次添加任何项目时检查 plist。您可以确认“NamesPlist.plist”和“ConfigPlist”是否正在更新。

于 2013-07-02T05:16:18.283 回答