如何使用 SWIFT 在 plist 中访问数组及其对象?
Posted
技术标签:
【中文标题】如何使用 SWIFT 在 plist 中访问数组及其对象?【英文标题】:How do I access an array and it objects within a plist with SWIFT? 【发布时间】:2014-07-20 08:52:11 【问题描述】:早安,
我已经环顾了这里和谷歌,但似乎找不到答案。我有一个名为 SoundsList 的 plist - 在根级别它是一个字典(默认),第一个项目是一个名为 Sounds 的数组,然后它的项目都是字符串。
我希望能够访问数组中的项目,但似乎无法找到如何执行此操作。
let path = NSBundle.mainBundle().pathForResource("SoundsList", ofType: "plist")
let dict = NSDictionary(contentsOfFile: path)
到目前为止,我设法找到了上面的代码,它为我提供了路径和字典部分 - 我设法在另一篇文章中找到了这段代码 - Swift - Read plist
问候,
戴夫
【问题讨论】:
【参考方案1】:是的,你是对的
//Gives path of plist
let path = NSBundle.mainBundle().pathForResource("SoundsList", ofType: "plist")
//you are intializing dictionary from plist
let dict = NSDictionary(contentsOfFile: path)
此代码为您提供字典。您可以打印字典的内容
println(dict)
正如你描述的字典结构应该是这样的
"Sounds":(
"sound1",
"sound2"
)
所以要访问您可以使用的声音列表
var soundsList = dict["Sounds"]
println(soundList) //this will print your soundList
您可以使用迭代到每个对象
for item in soundsList
println(item) //print sound1 and sound2
您应该参考 swift guide https://developer.apple.com/library/prerelease/mac/documentation/Swift/Conceptual/Swift_Programming_Language/CollectionTypes.html 中的集合类型
【讨论】:
阅读以上内容并查看该链接后,我对其进行了调整,因为 Xcode 给出了“推理”错误。 var soundList : Array以上是关于如何使用 SWIFT 在 plist 中访问数组及其对象?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Swift 将新数组数据添加到 plist 文件中的 NSDictionary
Swift 中的 Array 扩展以使用 NSPropertyListReadOptions 从 plist 中读取数组