首先建立一個模糊效果
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)