有人可以帮我解决 plist 问题吗?
我对 plist 有一点问题。我不知道如何从我的 plist 中读取数据,也不知道如何正确地构建它。 它应该是这样的:
- 根
- 产品 1
- 类型 1
- 字符串 1
- 字符串2
- 典型2 2
- 字符串 1
- 字符串2
- 类型 1
- 产品 2
- 类型 1
- 字符串 1
- 字符串2
- 典型2 2
- 字符串 1
- 字符串2
- 类型 1
- 产品 1
这些字符串是图像的路径,我想在我的应用程序中使用这些图像。但我不太确定如何访问字符串以及根、产品和类型是否应该是字典或数组。
我希望有人能帮助我。
I have a little problem with plists. I don't know how to read data from my plist and in general how to structure it correctly.
Here is how it should look like:
- Root
- product 1
- type 1
- string 1
- string 2
- typ2 2
- string 1
- string 2
- type 1
- product 2
- type 1
- string 1
- string 2
- typ2 2
- string 1
- string 2
- type 1
- product 1
The strings are paths to images and I want to use these images in my app. But I'm not quite sure how to access the strings and if root, product and type should be dictionaries or arrays.
I hope someone can help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
root 应该是一个字典,其键是产品,其值是具有键类型和值字符串数组的字典。您可以通过以下方式读取plist:
root should be a dictionary whose keys are products and whose values are dictionaries with keys type and values array of strings. You can read the plist in the following way: