在swift中读取pList

Jac*_*man 0 ios swift

有没有人想出如何在Swift中读取数组或字典中的plist?我似乎无法弄明白.我习惯使用dictionaryWithContentsOfFile但是在swift中似乎没有.

wot*_*pal 20

看看这个问题的答案:Swift - 阅读plist

let path = NSBundle.mainBundle().pathForResource("Config", ofType: "plist")
let dict = NSDictionary(contentsOfFile: path!)
Run Code Online (Sandbox Code Playgroud)