在這裏還有其他的「NSData contentsOfURL返回nil」的帖子,但沒有解決我的問題。NSData contentsOfURL返回nil,即使url有效swift 2.0
我試圖通過他們的APIv3從YouTube獲取個人資料圖片。
//To get the images URL if hover over defaultProfileImageURL it shows it has a significant number of bytes not nil.
let defaultProfileImageURL = NSURL(string: "https://i.ytimg.com/i/cRfrPfLqP5kjfEcoNwC7_A/1.jpg")!
//however defaultProfileImageData is nil even though defaultProfileImageURL has data when converted to NSData.
let defaultProfileImageData = NSData(contentsOfURL: defaultProfileImageURL)
let defaultProfileImage = UIImage(data: defaultProfileImageData!)
它爲什麼說不應該是零?
圖像鏈接不起作用 – Nishant
是的。我剛剛檢查了 – RyanTCB