Iphone 在iOS GridView中加载相机滚动图像的速度非常慢

Iphone 在iOS GridView中加载相机滚动图像的速度非常慢,iphone,ios,uitableview,alassetslibrary,aqgridview,Iphone,Ios,Uitableview,Alassetslibrary,Aqgridview,我正在我的iPhone应用程序中显示所有来自摄像头的图像。我构建了一个ALAsset*数组,其中包含应用程序启动时相机卷中所有图像的列表。我通过在图像视图中加载这些图像来形成单元格: // Get the full resolution image for asset ALAssetRepresentation *assetRep = [asset defaultRepresentation]; UIImage *image = [UIImage imageWithCGImage:[asset

我正在我的iPhone应用程序中显示所有来自摄像头的图像。我构建了一个
ALAsset*
数组,其中包含应用程序启动时相机卷中所有图像的列表。我通过在图像视图中加载这些图像来形成单元格:

// Get the full resolution image for asset
ALAssetRepresentation *assetRep = [asset defaultRepresentation]; 
UIImage *image = [UIImage imageWithCGImage:[assetRep fullResolutionImage]];
[cell.imageCropper setImage:image];
当在中请求新单元格时,我会执行此操作

- (AQGridViewCell *) gridView: (AQGridView *) aGridView cellForItemAtIndex: (NSUInteger) index

问题是当有很多图像并且用户快速滚动图像时,它会滞后。正确的处理方法是什么?

考虑使用GCD在后台加载图像。
也许这有帮助:

使用缩略图而不是FullResolution图像

缩略图对于我正在使用的应用程序来说太小了。我最终使用了@HeikoG建议的背景加载
fullScreenImage