swift中添加模糊图片

来源:互联网 发布:新版淘宝淘抢购在哪 编辑:程序博客网 时间:2024/06/04 20:28
 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)
0 0
原创粉丝点击