我有一个UITableview,它有一个像这样的图像列表。但是当我向上和向下滚动时,出于某种原因它非常迟缓。有办法阻止这个吗?图像不需要重新加载。它需要保持静止。
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *MyIdentifier = @"MyIdentifier";
UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if (cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:MyIdentifier];
}
ContentModel *contentModel = [self.tableArray objectAtIndex:indexPath.row];
NSURL *url = [NSURL URLWithString:contentModel.txtImages];
NSData *data = [NSData dataWithContentsOfURL:url];
cell.imageView.image = [[UIImage alloc] initWithData:data];
return cell;
}
答案 0 :(得分:0)
您最好使用AFNetworking UIImageView方法:
[imageView setImageWithURL:[NSURL URLWithString:@"http://image.com/image.png"]];
即使使用PlaceHolder:
[self.image setImageWithURL:[NSURL URLWithString:@"http://image.com/image.png"] placeholderImage: [UIImage imageNamed:@"logo"]];
https://github.com/AFNetworking/AFNetworking
这将大大减少您的tableview上的延迟。
答案 1 :(得分:0)
我们有非常相似的要求,但我的代码完美无缺,我猜这一点 这些命令会减慢你的日常工作:
NSURL *url = [NSURL URLWithString:contentModel.txtImages];
NSData *data = [NSData dataWithContentsOfURL:url];
cell.imageView.image = [[UIImage alloc] initWithData:data];
而是使用以下内容:
NSString *icon = CurrentQRCode.parsed_icon;
NSString *filePath = [[NSBundle mainBundle] pathForResource:icon ofType:@"png"];
UIImage *image_file = [UIImage imageWithContentsOfFile:filePath];
cell.imageView.image = image_file;
整个例程如下:
QRTypeCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[QRTypeCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];}
CurrentQRCode = (QRCode *)[fetchedResultsController objectAtIndexPath:indexPath];
NSString *icon = CurrentQRCode.parsed_icon;
NSString *string = CurrentQRCode.parsed_string;
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
NSString *filePath = [[NSBundle mainBundle] pathForResource:icon ofType:@"png"];
UIImage *image_file = [UIImage imageWithContentsOfFile:filePath];
cell.imageView.image = image_file;
cell.labelview.text = string;
我相信我最初尝试使用initWithData处理UIImages,但发现它们比其他方法慢很多。
答案 2 :(得分:0)
永远不会在主线程上从网络加载数据。使用GCD或AFNetworking或restkit等框架。你可以对你的应用程序做的最糟糕的事情就是用你可以通过主线程计算的东西来锁定你的主线程。一个好的经验法则是询问是否正在更新UI,如果不考虑将其移动到另一个线程。
如果你真的想了解原因,我还会看一些关于多线程的WWDC视频和与主线程相关的任何内容。