我已经在Swift 2中使用过这种方法
var myDict: NSDictionary?
if let path = NSBundle.mainBundle().pathForResource("Config", ofType: "plist") {
myDict = NSDictionary(contentsOfFile: path)
}
Run Code Online (Sandbox Code Playgroud)
但是不知道如何在不使用NSDictionary的情况下读取Swift3中的plist (contentsOfFile:path)