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)

上一篇:js中常用的正则表达式总结


下一篇:Nginx之RTMP