用于将plist存储在设备上的正确文件位置

时间:2010-07-13 14:21:09

标签: iphone objective-c nsdocument property-list

将plist存储在设备上的正确文件路径是什么。

我在教程

中阅读了这篇文章

适用于计算机,想知道设备的文件位置。

// write xml representation of dictionary to a file
[dictionary writeToFile:@"/Users/henrik/Sites/foo.plist" atomically:NO];

我目前尝试写入我从

中读取的文件路径
NSString *filepath = [[NSBundle mainBundle] 
                      pathForResource:@"UserAdded" ofType:@"plist"];
userAddedQuotes = [[NSMutableArray alloc] initWithContentsOfFile:filepath];

如下

[userAddedQuotes addObject:temp];
    [userAddedQuotes writeToFile:filepath atomically: NO];

数组在运行时更新,但不会保存到plist。

1 个答案:

答案 0 :(得分:4)

您无法写入应用程序包中的任何文件(包括您的资源目录)。如果要编写文件,则应将其写入应用程序文档或库文件夹,具体取决于文件的内容。例如:

NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

将返回一个路径数组,第一个是您的文档目录。