2

我正在将图像加载到tableView,每次功能

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

被执行,图像的不同 url 将出现..

我的问题是加载图像需要花费大量时间..

我的代码是..

-(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;
}

每次图片 url 都会改变,加载每张图片都需要时间..

任何人都可以提出解决这个问题的任何想法吗?多线程将如何使用此代码?我应该在代码中编辑的位置和内容?

4

4 回答 4

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;
}

只需在您的表格视图方法中使用上面的代码并进行必要的编辑,这应该适合您。

于 2013-03-07T11:54:00.690 回答
1

你不需要多线程。至少你不需要自己做。

看看这个教程。当我开始使用应用程序时,这对我很有帮助。 http://www.markj.net/iphone-asynchronous-table-image/

或者子类 UIImageView 并执行此操作: http ://codeshape.wordpress.com/2011/05/10/creating-a-lazy-loading-uiimageview-for-ios/

于 2013-03-07T12:06:55.490 回答
0

看一下 SDWebImage 框架:

SDWebImage 框架

也许它会帮助你。

于 2013-03-07T11:50:58.560 回答
0

我之前使用过的 Jeremy 答案的替代方案是HJCache框架

可以只使用 HJManagedImage 对象,它会为你异步下载和缓存图像

于 2013-03-07T11:55:53.473 回答