如何从 URL 获取图像
如果我有来自 JSon
Get 的 URL,请告诉我如何从 URL 获取 UIImage
。我一直在寻找并找到一些技巧,但尚未成功。请帮助我。
提前致谢。
Kindly tell me how can i get UIImage
from a URL if i have URL from a JSon
Get. I have been searching and found some tips but not succeeded yet. Kindly help me.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在我看来非常简单。只需使用以下代码行:
NSURL *url = [NSURL URLWithString:@"http://yoursite.com/imageName.png/jpg"];
NSData *myData = [NSData dataWithContentsOfURL:url];
UIImage *image = [[[UIImage alloc] initWithData:myData] autorelease];
现在可以在任何您想要的地方使用此图像。希望这有帮助。
快乐编码!
Very simple in my point of view. Just use the following line of codes:
NSURL *url = [NSURL URLWithString:@"http://yoursite.com/imageName.png/jpg"];
NSData *myData = [NSData dataWithContentsOfURL:url];
UIImage *image = [[[UIImage alloc] initWithData:myData] autorelease];
Now use this image wherever you want. Hope this helps.
Happy Coding!
希望这有帮助
Hope This helps