1
在第五行im得到「實例成員」baseURL「不能用於類型」URL「的錯誤。有人請幫我解決這個錯誤。實例成員「baseURL」不能用於類型「URL」
func getFileURL() -> URL {
let fileName = (imagePath! as NSString).lastPathComponent
let dirPath = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)[0]
let pathArray:[String] = [dirPath, fileName]
let fileURL = URL.baseURL(withPathComponents: pathArray)
return fileURL!
}
let fileURL = URL.baseURL(withPathComponents: pathArray)
然後後,您可以使用此文件路徑爲VAR URL = URL(字符串:文件路徑) – JAck
@JAck我想你的意思'URL(字符串:getFileURL())',但將無法正常工作(並不必要的),因爲結果已經是一個URL。請參閱:'let fileURL = URL(fileURLWithPath:dirPath,isDirectory:true)'。 – Coder256
它比thanx好:) –