使 SDWebImage 出现动画淡入淡出

Kev*_*inB 2 animation ios sdwebimage swift

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

SDWebImage用来加载图片:

if let photoUrlString = post?.photoUrl {
         let photoUrl = URL(string: photoUrlString)
         picImg.sd_setImage(with: photoUrl)
}
Run Code Online (Sandbox Code Playgroud)

加载图片时如何编写“淡入”效果?

Eri*_*ong 9

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

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

let photoUrl = URL(string: photoUrlString)

picImg.sd_imageTransition = .fade
picImg.sd_setImage(with: photoUrl)
Run Code Online (Sandbox Code Playgroud)