我试图更新我用swift 2制作的基本天气应用程序到swift 3这是我的代码:
func getWeather(city: String) {
let path = "http://api.openweathermap.org/data/2.5/weather?q=London,uk&appid=095711373620570aa92ee530246dc8af"
let url = NSURL(string: path)
let session = NSURLSession.sharedSession()
let task = session.dataTaskWithURL(url!) { (data: NSData?, response: NSURLResponse?, error: NSError?) -> Void in
print(">>>> \(data)")
}
Run Code Online (Sandbox Code Playgroud)
和NSURLSession.sharedSession(第5行)和NSURLResponse(第6行)打印出错误