我想在加载图片时设置动画。
我使用SDWebImage
加载图片:
if let photoUrlString = post?.photoUrl {
let photoUrl = URL(string: photoUrlString)
picImg.sd_setImage(with: photoUrl)
}
我如何编码"淡入"加载图片时的效果?
答案 0 :(得分:4)
编辑:SDWebImage提供七个仅在首次下载图像时执行的转换(source)。这些转换使用CATransition。
guard let photoUrlString = post?.photoUrl else {
return
}
let photoUrl = URL(string: photoUrlString)
picImg.sd_imageTransition = .fade
picImg.sd_setImage(with: photoUrl)