0

我有一个问题,我创建了一个电影列表。Root 是 Dictionary 类型和 Pixar 类型的数组,带有 3 个字符串电影标题我可以使用以下代码从列表中读取没问题

NSString *path = [[NSBundle mainBundle] pathForResource:@"Movies" ofType:@"plist"];

NSMutableDictionary *movies =[[NSMutableDictionary alloc] initWithContentsOfFile:path];

从这里我可以打印列表没问题。我现在想在此列表中添加另一部电影。所以我将列表转移到一个数组,然后将数组保存回文件,但它不起作用。知道我哪里出错了吗?

NSMutableArray *array= [movies valueForKey:@"Pixar"];
NSString *incredible=@"Incredibles";
[array addObject:incredible];

[movies setObject:array forKey:@"Pixar"];

[movies writeToFile:path atomically:YES];
4

1 回答 1

3

您不能在设备上写入包。模拟器不会强制执行这些约束,但设备会。

一种方法是:

  1. 查看该文件是否存在于Documents文件夹中。

  2. 如果是,请从Documents文件夹中读取。如果没有,请从捆绑包中读取它。

  3. 完成添加/删除记录后,将文件写入文件Documents夹。

因此:

NSString *bundlePath    = [[NSBundle mainBundle] pathForResource:@"Movies" ofType:@"plist"];
NSString *docsFolder    = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
NSString *documentsPath = [docsFolder stringByAppendingPathComponent:@"Movies.plist"];

NSMutableDictionary *movies = nil;

if ([[NSFileManager defaultManager] fileExistsAtPath:documentsPath])
    movies = [NSMutableDictionary dictionaryWithContentsOfFile:documentsPath];

if (!movies)
    movies = [NSMutableDictionary dictionaryWithContentsOfFile:bundlePath];

// do whatever edits you want

[movies writeToFile:documentsPath atomically:YES];
于 2013-06-03T21:32:09.173 回答