我正在使用sd_setimage函数在集合视图单元格中加载图像视图。 问题是当我两次调用sd_setimage时,只设置了第一个图像而第二个图像没有设置。如何同时调用两个sd_setimage函数并正确设置两个图像?
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
if indexPath.row == 0 {
cell.likesImage.sd_setImage(with: urlString1Temp as URL!, placeholderImage: UIImage(named: "imageLoading"))
cell.likeUserPic.sd_setImage(with: userProfileUrl as URL!, placeholderImage: UIImage(named: "imageLoading"))
}
非常感谢任何帮助。 :)