0

我有一个表视图,它运行一些代码,用于在后台线程中从 NSData 获取 UIImage,然后在前台调用[button setImage:image forState:UIControlStateNormal];.

问题是它会在该行上冻结 UI 片刻,直到它完成。这意味着 UI 在将其设置为图像时会冻结。因为用户正在滚动,所以这是非常明显和紧张的。有什么办法可以避免我的 UI 像这样冻结?

dispatch_queue_t cellSetupQueue = dispatch_queue_create("Setup", NULL);
dispatch_async(cellSetupQueue, ^{
    UIImage *image = [self.mediaDelegate largeThumbnailForMediaAtIndex:indexPath.row];
    dispatch_async(dispatch_get_main_queue(), ^{     
        [self.thumbnailButton setImage:image forState:UIControlStateNormal];
    });
});

dispatch_release(cellSetupQueue);
4

1 回答 1

3

我猜你的图片是JPG。如果是这样,那么 UIImage 将延迟解码实际图像,直到它第一次真正需要这些像素。查看 ImageIO 框架以获得更精确的控制。这是我使用的一个片段:

CGImageSourceRef source = CGImageSourceCreateWithData((__bridge CFDataRef)data, NULL); // data is your image file NSData
if (source)
{
    NSDictionary *dict = @{ (__bridge NSString *)kCGImageSourceShouldCache : @(YES) };
    CGImageRef cgImage = CGImageSourceCreateImageAtIndex(source, 0, (__bridge CFDictionaryRef)dict);
    if (cgImage)
    {
        CFRelease(source);
        return cgImage; // you can keep this reference so you dont have to decode again later
    }
}

重要的部分是kCGImageSourceShouldCache选项。您可以在后台线程上运行此代码并将解码后的图像传递给 UI 线程。

于 2012-10-24T00:40:19.380 回答