我要同时从Web服务器下载多个图像,但问题是它们相互混淆。
dispatch_async(dispatch_get_global_queue(0,0), ^{
NSData * data = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:@"website.com"]];
if (data == nil)
return;
dispatch_async(dispatch_get_main_queue(), ^{
cell.imageView.image = [UIImage imageWithData:data];
});
});
我从Getting Image from URL Objective C获得此代码。
我该如何解决??还有什么办法可以加快下载速度?
最佳答案
您可以使用“AsyncImageView”类文件来同步加载图像,并在图像加载时显示 Activity 指示器
AsyncImageView是一个类文件,它将在其中为每个调用创建连接,并且在完成图像数据下载后,它将为imageview返回图像。如果图像已经在缓存中,则仅返回图像而不创建连接。
您可以从以下链接下载“AsyncImageView”类文件:-https://www.dropbox.com/s/peazwjvky9fsjd7/Archive.zip
在.m文件中导入AsyncImageView类
#import "AsyncImageView.h"
在tableview单元格中的indexpath方法
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"SimpleTableCell";
UITableViewCell *cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake(X, y, width, height)];
NSString *imageURL = [NSString stringWithFormat: @"www.xyz.image.png"];
AsyncImageView *async = [[AsyncImageView alloc]initWithFrame:CGRectMake(0, 0, width, height)];
[async loadImageFromURL:[NSURL URLWithString:imageURL]];
[imageView addSubview:async];
[cell addSubview:imageView];
return cell;
}
试试这个,您的问题会解决。