Plist 中的多个数组
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
<array>
<string>Title 1</string>
<string>Subtitle 1</string>
<string>image1.png</string>
</array>
<array>
<string>Title 2</string>
<string>Subtitle 2</string>
<string>image2.png</string>
</array>
</array>
</plist>
这是我正在开发的应用程序的 Plist 文件。
我不确定如何获取许多数组的第一个字符串来创建一个包含所有标题的 NSMutableArray,并再次创建字幕和图像名称。
我目前的解决方法是为每种类型的字符串创建 3 个单独的 Plist 文件,这可能会很麻烦。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
<array>
<string>Title 1</string>
<string>Subtitle 1</string>
<string>image1.png</string>
</array>
<array>
<string>Title 2</string>
<string>Subtitle 2</string>
<string>image2.png</string>
</array>
</array>
</plist>
This is my Plist file for an app I am working on.
I am not sure on how to take the first string of many arrays to create an NSMutableArray with all the titles and again for the subtitles and image names.
My workaround at the moment is creating 3 separate Plist files for each type of string which can be a nuisance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要在保留 plist 数据结构的同时回答您的问题,您可以简单地执行如下操作:
但是,我建议您使用如下结构:
此时您可以使用更明确的代码,如下所示:
To answer your question while retaining the plist data structure, you could simply do something like the following:
However, I would advise you to use a structure like:
At which point you could use the more explicit code as follows: