[imageView setImageWithURL:[NSURL URLWithString:IMAGE_URL]];
會(huì)報(bào)錯(cuò):“App TransportSecurity has blocked a cleartext HTTP (http://) resource load since it isinsecure. Temporary exceptions can be configured via your app's Info.plistfile.”
解釋:ATS禁止HTTP明文傳輸,因?yàn)椴话踩?/p>
解決方案:修改Info.plist文件,讓它臨時(shí)允許明文傳輸。
在Info.plist文件中添加"App Transport Security Settings", Type為"Dictionary",再添加"Allow Arbitrary Loads", Type 為"Boolean",“Value”為“YES”即可。