在设备上存储 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。