使用customCell在tableView中加载三个图像

时间:2013-02-13 07:12:10

标签: iphone xcode

我创建了tableView customCell,每行有三张图片。我已经从文件夹中加载了图像。向上或向下滚动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;

3 个答案:

答案 0 :(得分: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加载和缓存图像,因为它提供了对底层加载和缓存类的直接访问。

答案 1 :(得分: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

答案 2 :(得分:0)

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

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