使 SDWebImage 出现动画淡入淡出

Making SDWebImage appear with fade in animation

我想在加载图像时设置动画。

我用SDWebImage加载图片:

if let photoUrlString = post?.photoUrl {
         let photoUrl = URL(string: photoUrlString)
         picImg.sd_setImage(with: photoUrl)
}

如何在加载图片时编写 "fade in" 效果?

编辑:SDWebImage 提供了七个仅在首次下载图像时执行的转换 (source)。这些转换使用 CATransition。

guard let photoUrlString = post?.photoUrl else {
    return
}

let photoUrl = URL(string: photoUrlString)

picImg.sd_imageTransition = .fade
picImg.sd_setImage(with: photoUrl)