下载多个图像

时间:2011-10-18 11:41:16

标签: iphone interface

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

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

1 个答案:

答案 0 :(得分:-1)

要下载图片,您可以

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

此外,您还需要查看Apple的LazyTableImages。你找到了一个很好的例子here