2016-03-19 23 views

回答

1

的問題是,你要createDirectoryAtURL電話沒有一個明確的返回值。在Swift中,這意味着它返回一個Void,它由空元組()表示。這是你的電話應該是什麼樣子。

let temp = NSTemporaryDirectory() 
    let newDiretoryURL = NSURL.fileURLWithPath(temp + "/MyNewDirectory") 
    try fileManager.createDirectoryAtURL(newDiretoryURL, withIntermediateDirectories: false, attributes: nil) 
    print("Success") 
    } 
} catch { 
    // handle errors here 
} 
+0

非常感謝您,這對我非常有幫助!^。^ – Jixes