下载多张图像

发布于 2024-12-10 16:17:01 字数 89 浏览 0 评论 0原文

我想从 3 个不同的 url 下载 3 张图像,并使用 Objective-c 在 iphone 的 UI 中显示它们。

一些示例代码会有很大帮助。

I want to download 3 images from 3 different urls and display them in the UI in iphone using Objective-c.

Some sample codes will be of great help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

素食主义者 2024-12-17 16:17:01

要下载图像,您

NSURL *url = [NSURL URLWithString:@"http://xxx.com/imageName.jpg"];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *img = [[[UIImage alloc] initWithData:data] autorelease];

还需要查看 Apple 的 LazyTableImages。您可以在此处找到一个很好的示例。

To download image you can

NSURL *url = [NSURL URLWithString:@"http://xxx.com/imageName.jpg"];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *img = [[[UIImage alloc] initWithData:data] autorelease];

Also you need to see Apple's LazyTableImages. You find a good example here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文