我正在尝试将文件从我的App的Bundle复制到设备,我收到一个奇怪的错误:cannot convert the expression type '$T5' to type 'LogicValue'
我在下面的代码中评论了导致问题的那一行。
以下是一切:
// This function returns the path to the Documents folder:
func pathToDocsFolder() -> String {
let pathToDocumentsFolder = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0] as String
return pathToDocumentsFolder.stringByAppendingPathComponent("/moviesDataBase.sqlite")
}
override func viewDidLoad() {
super.viewDidLoad()
let theFileManager = NSFileManager.defaultManager()
if theFileManager.fileExistsAtPath(pathToDocsFolder()) {
println("File Found!")
// And then open the DB File
}
else {
// Copy the file from the Bundle and write it to the Device:
let pathToBundledDB = NSBundle.mainBundle().pathForResource("moviesDB", ofType: "sqlite")
let pathToDevice = pathToDocsFolder()
let error:NSError?
// Here is where I get the error:
if (theFileManager.copyItemAtPath(pathToBundledDB, toPath:pathToDevice, error:error)) {
// success
}
else {
// failure
}
}
}
该应用程序现在甚至不会编译。这个问题似乎特别针对copyItemAtPath
调用 - 它应该返回Bool。
我很感激任何见解。
答案 0 :(得分:4)
这里有两个问题:
如果您将error
变量指定为let
,那么它不可变,因此您无法获得错误值。
您应该发送指向error
变量的指针,而不是变量本身。因此,在您收到编译器错误的行中,它应该是&error
而不是error
。