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)
加载图片时如何编写“淡入”效果?
编辑: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)
| 归档时间: |
|
| 查看次数: |
1047 次 |
| 最近记录: |