如何以编程方式从 plist 添加和检索数据

发布于 2024-11-01 17:01:33 字数 337 浏览 3 评论 0原文

大家好 我是 Objective C 的新手,我想以动态/编程方式将数据插入到 plist 中。请帮助我。这是我的 plist 结构

root
  |_Client1
        |_report1
             |_application1
             |_application2

        |_report2
             |_application3

  |_Client2
       |_report1

现在我想动态添加和检索数据到 plist 中的 application1、application2 请帮我

hello all
I am new to objective c and i want to insert data dynamically/programmatically into plist.please help me.Here is my plist structure

root
  |_Client1
        |_report1
             |_application1
             |_application2

        |_report2
             |_application3

  |_Client2
       |_report1

Now i want to add and retrieve data dynamically to application1,application2 in my plist
please help me

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

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

发布评论

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

评论(1

七分※倦醒 2024-11-08 17:01:33

读取.plist文件的内容..

NSString* plistPath = [[NSBundle mainBundle] pathForResource:@"league" ofType:@"plist"];
contentArray = [NSArray arrayWithContentsOfFile:plistPath];

写入.plist文件。

NSMutableDictionary * myDictionary;
NSString* plistPath = [[NSBundle mainBundle] pathForResource:@"league" ofType:@"plist"];
[myDictionary writeToFile:plistPath atomically:YES];

注意:
字典必须包含 plist 对象(NSDataNSDateNSNumberNSStringNSArray 的实例代码> 或 NSDictionary)。并且字典键必须是 NSString 对象

Reading content of .plist file ..

NSString* plistPath = [[NSBundle mainBundle] pathForResource:@"league" ofType:@"plist"];
contentArray = [NSArray arrayWithContentsOfFile:plistPath];

Writing to .plist file.

NSMutableDictionary * myDictionary;
NSString* plistPath = [[NSBundle mainBundle] pathForResource:@"league" ofType:@"plist"];
[myDictionary writeToFile:plistPath atomically:YES];

Note that:
Dictionary must contain plist objects (instances of NSData, NSDate, NSNumber, NSString, NSArray, or NSDictionary). And dictionary keys must be NSString objects

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