1、创建一个UIImageView 并将Image 设置为要模糊处理的图片
2、创建UIVisualEffectView并在initwithEffect:方法中添加UIblureEffect对象
3、UIBlurEffect中的effectwithStyle:创建方法中分别是可以传三个枚举类型,代表三种不同的模糊效果
UIblurEffectStyleExtraLight:高亮
UIblurEffectStyleLight:一点亮
UIblurEffectStyleDark:有点暗
4、设置UIVisualEffectView对象的frame等于UIImageView的frame
5、添加到视图上(搞定)
网友评论