使用dataWithContentsOfURL方法取图片文件,有些返回nil,例如:
NSURL *url=[NSURL URLWithString:@"http://wx2.sinaimg.cn/mw690/6f250299gy1fefknh4ml6j21kw163gyj.jpg"];
NSData *data=[NSData dataWithContentsOfURL:url options:nil error:&error];
图是微博里随便找的,直接在浏览器可以打开;执行后data为nil,Error如下:
Error Domain=NSCocoaErrorDomain Code=256 "The file “6f250299gy1fefknh4ml6j21kw163gyj.jpg” couldn’t be opened." UserInfo={NSURL=http://wx2.sinaimg.cn/mw690/6...}
同样的使用方法,换成其他比如百度Logo图片:
NSURL *url=[NSURL URLWithString:@"https://ss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/logo/bd_logo1_31bdc765.png"];
NSData *data=[NSData dataWithContentsOfURL:url options:nil error:&error];
结果正常。求问怎么回事?
EDIT:
你在info.plist 裡面設定一下這個。
有可能是http的原因,百度那個是https。
我不設定這個訪問http那張圖片會報
App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.
How do I load an HTTP URL with App Transport Security enabled in iOS 9?
Transport security has blocked a cleartext HTTP
我試了一下,並沒有出現你說的錯誤,能夠正常得到圖片。