我的项目目录中有一个plist文件。我可以在这个plist文件中读写。
但这可以从项目目录外读取plist文件吗?
我的代码是从项目目录中读取plist文件:
if let path = NSBundle.mainBundle().pathForResource("test", ofType: "plist") {
myDict = NSDictionary(contentsOfFile: path) //mydict is a dictionary type variable
}
答案 0 :(得分:1)
您只能从捆绑包或其他沙盒目录中读取文件。例如,您可以从文档目录中读取/写入plist文件。