我正在将 url 数据转换为UIImage
. 这是我的代码。
NSURL *url = [NSURL URLWithString:strImgURL];
NSData *data = [NSData dataWithContentsOfURL:url options:NSDataReadingUncached error:&error];
NSLog(@"Image Error-------%@",[error localizedDescription]);
imgProf = [[UIImage alloc] initWithData:data];
但我的数据总是返回<>
(lldb) po data
<>
但是当我在浏览器中输入这个网址时,我可以得到图像。这是什么原因?请帮我。谢谢