0


UITableView加载网络图片 cell适应图片高度

UITableView加载网络图片 cell适应图片高度

一、自定义cell.xib上拖拽一个imageView

上下左右贴边约束,连线属性

  1. cell.h
  2. @property(strong, nonatomic) IBOutlet UIImageView *imgView;

在这里插入图片描述

二、在VC.m 中根据图片尺寸设置cell高度

  1. -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {returnself.picAdrVOS.count;}-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{// 先从缓存中查找图片
  2. NSString *imgURL =self.picAdrVOS[indexPath.row].imgUrl;
  3. UIImage *image =[[SDImageCache sharedImageCache] imageFromDiskCacheForKey:imgURL];if(!image){return0;}//手动计算cell
  4. CGFloat imgHeight = image.size.height * kScreenWidth / image.size.width;return imgHeight;}-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  5. YBMImgTableViewCell *cell =[tableView dequeueReusableCellWithIdentifier:@"YBMImgTableViewCell" forIndexPath:indexPath];[self configureCell:cell atIndexPath:indexPath];
  6. ……
  7. return cell;}//加载图片-(void)configureCell:(YBMImgTableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath {
  8. YBMShopHomePicModel *model =self.picAdrVOS[indexPath.row];
  9. UIImage *cachedImage =[[SDImageCache sharedImageCache] imageFromDiskCacheForKey:model.imgUrl];if(!cachedImage ){[self downloadImage:model.imgUrl];}else{
  10. cell.imgView.image = cachedImage;}}-(void)downloadImage:(NSString *)imageURL{// 利用 SDWebImage 框架提供的功能下载图片[[SDWebImageDownloader sharedDownloader]downloadImageWithURL:[NSURL URLWithString:imageURL] options:SDWebImageDownloaderUseNSURLCache progress:^(NSInteger receivedSize, NSInteger expectedSize){} completed:^(UIImage *image, NSData *data, NSError *error, BOOL finished){[[SDImageCache sharedImageCache]storeImage:image forKey:imageURL toDisk:YES];// ⚠️必须判断有图片才刷新,避免因加载失败而引起死循环!if(image){dispatch_async(dispatch_get_main_queue(),^{[self.tableView reloadData];});}}];}

这样就可以实现效果啦。

⚠️⚠️⚠️注意:加载图片失败时,必须判断有图片才刷新tableView,避免因图片加载失败而引起死循环!

标签: ios objective-c cell

本文转载自: https://blog.csdn.net/biyuhuaping/article/details/123133223
版权归原作者 碧羽化屏 所有, 如有侵权,请联系我们删除。

“UITableView加载网络图片 cell适应图片高度”的评论:

还没有评论