我的錯誤是: 值類型的「字符串」沒有成員「URLByAppendingPathComponent」錯誤:類型「字符串」的值沒有任何成員「URLByAppendingPathComponent」
我在這一行錯誤:
let savePath = documentDirectory.URLByAppendingPathComponent("mergeVideo-\(date).mov")
我全碼:
// 4 - Get path
let documentDirectory = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0]
var dateFormatter = NSDateFormatter()
dateFormatter.dateStyle = .LongStyle
dateFormatter.timeStyle = .ShortStyle
let date = dateFormatter.stringFromDate(NSDate())
let savePath = documentDirectory.URLByAppendingPathComponent("mergeVideo-\(date).mov")
let url = NSURL(fileURLWithPath: savePath)
我跟着這個教程:Here
是更改後,該行出現錯誤:''stringByAppendingPathComponent'不可用:改爲在NSURL上使用URLByAppendingPathComponent.' – user5513630
我更新了修復問題的答案。無論如何,最好使用URL相關的API(通過NSFileManager獲取URL)。 – vadian
是的,它的工作。謝謝 – user5513630