微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

自定义表格单元格以显示图像

如何解决自定义表格单元格以显示图像

| 我打算将图像(通过URL字符串)添加到表格视图中。但是,照片图像未显示在表格中。下面是我的代码
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static Nsstring *CellIdentifier = @\"Cell\";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) 
    {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];

        UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectZero];
        imageView.tag = kImageValueTag;
        [cell.contentView addSubview:imageView];

        [imageView release];
    }

    // Configure the cell...
    NSUInteger row = [indexPath row];
    Photo *thisPhoto = [self.thisArray objectAtIndex:row];

    UIImageView *thisImageView = (UIImageView *)[cell.contentView viewWithTag:kImageValueTag];
    NSData * imageData = [[NSData alloc] initWithContentsOfURL: [NSURL URLWithString: thisPhoto.imageURL]];

    NSLog(@\"URL: %@\",thisPhoto.imageURL);

    thisImageView.image = [UIImage imageWithData:imageData];

    return cell;
}
我所有的图像都有不同的尺寸。如何使表格根据尺寸显示图像?     

解决方法

        以下博客文章可以指导您从Internet下载单元格中的图像。 MHLazyTableImages –有效加载大型表的图像 HJCache:iPhone缓存库,用于异步图像加载和缓存。 当您要求基于图像的像元大小时,我建议您以预定义矩形显示所有图像,并且所有图像均相同。 尽管您可以根据图像大小更改每个单元格的大小,但这会降低ѭ1的性能。     

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。