UITableview单元格向下滚动不流畅

时间:2019-02-27 08:48:40

标签: ios objective-c uitableview uiimageview

我正在寻找有关自定义UITableview单元格图像的解决方案。

我正在自定义UITableview单元中正常加载一些信息(标签+ UIimageview),但是由于iOS 12,当我向下滚动时,它并不平滑(第一次滚动时滞后了,而当我向下滚动时,它平滑了)我正在向上滚动,可能与缓存图片有关。

RecipeTableCell *cell = (RecipeTableCell *)[self.UITableView 
dequeueReusableCellWithIdentifier:CellIdentifier];

// Configure the cell...
if (cell == nil) 
{
    cell = [[RecipeTableCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Display recipe in the table cell
Recipe *recipe = nil;

 recipe = [recipes objectAtIndex:indexPath.row];
 recupereNomFavoris = [[recipes objectAtIndex:indexPath.row] valueForKey:@"favoris"];
 recupereImage = [[recipes objectAtIndex:indexPath.row] valueForKey:@"image"];
 recupereNom = [[recipes objectAtIndex:indexPath.row] valueForKey:@"name"];
 recupereLien = [[recipes objectAtIndex:indexPath.row] valueForKey:@"lien"];
 recupereGenre = [[recipes objectAtIndex:indexPath.row] valueForKey:@"genre"];

    }
}

//Display cells informations
cell.nameLabel.text = recipe.name;
cell.genre.text = recipe.genre;
cell.thumbnailImageView.image = [UIImage imageNamed:recipe.image];

我尝试添加异步解决方案,但加载图像需要1秒钟以上的时间。

dispatch_queue_t queue =dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0ul);
dispatch_async(queue, ^{
    UIImage *image = [UIImage imageNamed:recipe.image];// Load from file or Bundle as you want                
    dispatch_sync(dispatch_get_main_queue(), ^{
        cell.thumbnailImageView.image = image;
    });
});

所有图像大小都在1到20kb之间,我将它们本地加载。我在我的IB中使用约束(重量和宽度+布局约束)。

我尝试实现SDWEBIMAGE,但它只允许您加载URL图像。

有什么建议吗?我正在为这个问题而苦苦挣扎

1 个答案:

答案 0 :(得分:0)

在这种情况下,图像导致错误,您需要使用图像延迟加载, 您可以使用以下库代码来设置延迟加载,这样做的好处是您可以通过将UIimageview分配给图像来设置占位符图像,

SDWebimage:https://github.com/SDWebImage/SDWebImage

import SDWebImage

imageView.sd_setImage(with: your image path or data, placeholderImage: UIImage(named: "placeholder.png"))

AlamofireImage:https://github.com/Alamofire/AlamofireImage

imageView.af_setImage(withURL: image path, placeholderImage: UIImage(named: "placeholderImage"))
相关问题