我在项目中使用SDWebImage for Swift,并尝试根据发现的here高级用法示例,为图像添加模糊效果。
更具体地说,我试图声明一个SDImageBlurTransformer
,但是当我开始输入该选项时,它并没有出现。
使用SDWebImage包是否可以实现图像模糊效果?
答案 0 :(得分:0)
确保您的Podfile引用了该项目的版本5.0,然后运行pod update
。我使用SDWebImage 5.0版在新项目中正确完成了代码。
这是我的Podfile
供参考:
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'BlurImage' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'SDWebImage', '~> 5.0'
end