1

我创建了一个每行tableViewcustomCell三个图像的图像。我从文件夹中加载了图像。当我向上或向下滚动时,tableView需要时间向上或向下移动。我发现了一些概念,例如缓存和延迟加载,它们是从服务器加载的图像。我不知道如何在我的应用程序中使用它。

ImagesClass *Obj1 = [imageLists objectAtIndex:indexPath.row*noOfImageInRow];


    UIImage *image1 = [self getImageForImageId:Obj1.imageId FromPath:SAVEDIMAGE_DIR];
    Obj1.thumbImage = [self imageWithImage:image1 convertToSize:CGSizeMake(130, 130)];

    [cell setImage:1 :Obj1.thumbImage RowNo:indexPath.row*noOfImageInRow];


}

if ([imageLists count] > indexPath.row*noOfImageInRow+1) {

    ImagesClass *Obj2 = [imageLists objectAtIndex:indexPath.row*noOfImageInRow+1];
    UIImage *image1 = [self getImageForImageId:Obj2.imageId FromPath:SAVEDIMAGE_DIR];
    Obj2.thumbImage = [self imageWithImage:image1 convertToSize:CGSizeMake(130, 130)];

    [cell setImage:2 :Obj2.thumbImage RowNo:indexPath.row*noOfImageInRow+1];


}

if ([imageLists count] > indexPath.row*noOfImageInRow+2) {


    ImagesClass *Obj3 = [imageLists objectAtIndex:indexPath.row*noOfImageInRow+2];

    UIImage *image1 = [self getImageForImageId:Obj3.imageId FromPath:SAVEDIMAGE_DIR];
    Obj3.thumbImage = [self imageWithImage:image1 convertToSize:CGSizeMake(130, 130)];

    [cell setImage:3 :Obj3.thumbImage RowNo:indexPath.row*noOfImageInRow+2];


}

cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.delegate = self;
return cell;
4

3 回答 3

1

我建议你使用这个AsyncImageView。要调用此 API:

ASyncImage *img_EventImag = alloc with frame;
NSURL *url = yourPhotoPath;
[img_EventImage loadImageFromURL:photoPath];
[self.view addSubView:img_EventImage]; // In your case you'll add in your TableViewCell.

这与使用 UIImageView 相同。很简单,它可以为您完成大部分工作。AsyncImageView 包括 UIImageView 上的一个简单类别,用于在 iOS 上异步加载和显示图像,以便它们不会锁定 UI,以及用于更高级功能的 UIImageView 子类。AsyncImageView 与 URL 一起使用,因此它可以与本地或远程文件一起使用。

加载/下载的图像缓存在内存中,并在出现内存警告时自动清理。AsyncImageView 独立于 UIImage 缓存运行,但默认情况下,位于应用程序包根目录中的任何图像都将存储在 UIImage 缓存中,以避免缓存图像的任何重复。

该库还可用于独立于 UIImageView 加载和缓存图像,因为它提供对底层加载和缓存类的直接访问。

于 2013-02-13T07:24:23.963 回答
0

试试这个简单的方法

如果您在本地加载图像,请尝试以下代码

在 ViewDidLoad 下执行此操作

 Image1Array=[[NSMutableArray alloc]initwithobjects:[UIImage imagenamed@"cell1stimage.png"],....nil];
 Image2Array=[[NSMutableArray alloc]initwithobjects:[UIImage imagenamed@"cell2ndimage.png"],....nil];
 Image3Array=[[NSMutableArray alloc]initwithobjects:[UIImage imagenamed@"cell3rdimage.png"],....nil];

 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return [Image1Array count];
}

 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

{
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];




    UIImageView *imageview=[[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 42, 42)];
    [imageview setImage:[Image1Array objectAtIndex:indexpath.row];
    [cell.contentView addSubview:imageview];
    [imageview release];


    UIImageView *imageview2=[[UIImageView alloc]initWithFrame:CGRectMake(85, 0, 42, 42)];
    [imageview setImage:[Image2Array objectAtIndex:indexpath.row];
    [cell.contentView addSubview:imageview];
    [imageview2 release];


    UIImageView *imageview3=[[UIImageView alloc]initWithFrame:CGRectMake(0, 120, 42, 42)];
    [imageview3 setImage:[Image3Array objectAtIndex:indexpath.row];
    [cell.contentView addSubview:imageview3];
    [imageview3 release];
    }

    return cell;
    }

希望这可以帮助..!

如果您发现图像仍然加载缓慢,则在数组中添加 UIImageview 而不是 UIimage

于 2013-02-13T07:30:02.103 回答
0

有时我以前​​做过这个。我的经验是,无论是从文件夹加载还是从网络加载,都必须在本地保存缩略图副本。然后加载速度会更快。

对于每张图片,我都将缩略图副本保存在 /thumbnail 文件夹中。如果某些图像没有缩略图,我存储一个然后加载它们。通过这种方式,表格单元格加载图像的速度更快。

于 2013-02-13T08:05:18.657 回答