前端之家收集整理的这篇文章主要介绍了
swift中添加模糊图片,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
let blureffect=UIBlurEffect(style: UIBlurEffectStyle.Light); let blurView = UIVisualEffectView(effect: blureffect) //设置
效果视图类实例的尺寸 blurView.frame.size = CGSize(width: view.frame.width,height: view.frame.height) //将模糊
效果视图类实例放入背景中 bg.addSubview(blurView)
原文链接:https://www.f2er.com/swift/322297.html