如何在plist中添加新行

发布于 2024-09-30 17:23:36 字数 271 浏览 3 评论 0原文

嗨朋友我是初学者 对于简单的问题感到抱歉。

如何在“plist”中添加新行以保存数据 和其中的访问密钥。

NSArray *values = [[NSArray alloc] initWithObjects:@"Hello",nil];
[values writeToFile:[self PathArray] atomically:YES];

因为,这个方法只覆盖([self PathArray])“path”中的值;

谢谢

Hi friends i'm beginner
and sorry for simple Questions.

how can i add new lines in ""plist"" for saving data
and access keys in it.

NSArray *values = [[NSArray alloc] initWithObjects:@"Hello",nil];
[values writeToFile:[self PathArray] atomically:YES];

because , this method Only overwrite Values in ([self PathArray]) "path";

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅浅 2024-10-07 17:23:36

Plist 文件不是为增量更新而设计的,相反,您应该将 plist 内容加载到内存中,向其中添加项目并保存回来:

NSMutableArray *oldValues = [NSMutableArray arrayWithContentsOfFile:[self PathArray]];
NSArray *values = [[NSArray alloc] initWithObjects:@"Hello",nil];
[oldValues addObjectsFromArray:values];    
[oldValues writeToFile:[self PathArray] atomically:YES];
[values release]; // Do not forget this line to avoid memory leak

Plist files are not designed for incremental updates, instead you should load plist contents in memory, add an item to it and save back:

NSMutableArray *oldValues = [NSMutableArray arrayWithContentsOfFile:[self PathArray]];
NSArray *values = [[NSArray alloc] initWithObjects:@"Hello",nil];
[oldValues addObjectsFromArray:values];    
[oldValues writeToFile:[self PathArray] atomically:YES];
[values release]; // Do not forget this line to avoid memory leak
他夏了夏天 2024-10-07 17:23:36

在我的项目中,字典数据包括null,例如:

{
 "category_id" = 29;
   "category_name" = "\U5f69\U6f2b";
   coverurl = "<null>";
   position = 29;
}

所以writetofile,返回值始终为FALSE。

In my item, the dictionary data includes null, for example :

{
 "category_id" = 29;
   "category_name" = "\U5f69\U6f2b";
   coverurl = "<null>";
   position = 29;
}

so writetofile, return value always FALSE.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文