我正在将图像加载到tableView,每次都是函数
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
执行,将会出现不同的图像网址。
我的问题是花了这么多时间加载图片..
我的代码是..
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
self.tableView1 = tableView;
static NSString *simpleTableIdentifier = @"SimpleTableCell";
SimpleTableCell *cell = (SimpleTableCell *)[tableView1 dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"SimpleTableCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
}
cell.nameLabel.text = title;
NSString *imageURL = [NSString stringWithFormat: @"http://www.xyz.com/image1.png];
cell.thumbnailImageView.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:fullURL]]];
}
return cell;
}
每次图片网址都会发生变化,加载每张图片需要一段时间..
任何人都可以提出解决这个问题的想法吗? 多线程如何使用此代码? 我应该在代码中编辑的位置和内容?
答案 0 :(得分:3)
您必须在背景中下载图片,如:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"SimpleTableCell";
SimpleTableCell *cell = (SimpleTableCell *)[tableView1 dequeueReusableCellWithIdentifier:simpleTableIdentifier];
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0ul);
dispatch_async(queue, ^{
NSString *u=[NSString stringWithContentsOfFile:r.url encoding:NSUTF8StringEncoding error:nil];
NSURL *imageURL=[NSURL URLWithString:u];
NSData *imageData=[NSData dataWithContentsOfURL:imageURL];
dispatch_sync(dispatch_get_main_queue(), ^{
SimpleTableCell *cell = (SimpleTableCell *)[tableView cellForRowAtIndexPath:indexPath];
cell.thumbnailImageView.image=[UIImage imageWithData:imageData];
[cell setNeedsLayout];
});
});
}
return cell;
}
只需在表格视图方法中使用上述代码并进行必要的编辑,这应该适合您。
答案 1 :(得分:1)
您不需要多线程。至少你不需要自己做。
看一下本教程。当我开始使用Apps时,这对我很有帮助。 http://www.markj.net/iphone-asynchronous-table-image/
或者子类UIImageView并执行此操作: http://codeshape.wordpress.com/2011/05/10/creating-a-lazy-loading-uiimageview-for-ios/
答案 2 :(得分:0)
答案 3 :(得分:0)
我之前使用的Jeremy答案的另一种选择是HJCache框架
可以只使用HJManagedImage对象,它将为您异步下载和缓存图像