1
我的代碼在這裏,我想趕上時,URL鏈接是錯誤的。處理嘗試在swift3中捕獲URL
let url = NSURL(string: poster_image_url)
do{
let poster_data = try NSData(contentsOf:url! as URL)
posterImage.image = UIImage(data: poster_data as Data)
}catch let error {
debugPrint("ERRor ::\(error)")
}
沒有捕捉到我的代碼。如何解決這個錯誤?請幫幫我。
使用URL(NSURL)和數據(NSData的)?你爲什麼要將'Data'轉換爲'Data'?你爲什麼強迫展開'url'而不是使用'if let'? – rmaddy