在我的应用程序中,我实现了一种从 URL 下载图像并将其显示在 TableView 单元格中的方法。代码工作正常,但我还需要实现另外两个功能,
1) 一个 UIActivityIndicator 来显示图像正在被下载。2) 检查镜像是否已经下载。仅当单元格为空时才下载。
这是我的代码。
-(void) downloadImage
{
NSURL *url = [NSURL URLWithString:@"http://cdn.iphonehacks.com/wp-content/uploads/2012/09/iphone5-front-back.jpg"];
UIImage *image = [[UIImage alloc] initWithData: [NSData dataWithContentsOfURL:url]];
[dCellImageView setImage:image];
[image release];
}
谢谢。