在 mu UITable 视图中,我正在显示来自服务器的图像..为此我正在使用延迟加载。当行在屏幕上时,我可以加载图像。如何增加加载的图像数量。
喜欢-第一次可以看到 3 个表格单元格,并且这些单元格上的图像会延迟 2 秒加载。如何同时加载接下来 3 行的图像?
我正在使用下面的函数来加载图像
- (void)loadImagesForOnscreenRows
{
if ([imageArray count] > 0)
{
NSArray *visiblePaths = [tableView indexPathsForVisibleRows];
for (NSIndexPath *indexPath in visiblePaths)
{
AppRecord *appRecord = [dataArray objectAtIndex:indexPath.row];
if (!appRecord.appIcon) // avoiding the imagen download if already has an image
{
[self startIconDownload:appRecord forIndexPath:indexPath];
}
}
}
}