我想知道如何设置 iOS new 的半径/模糊系数UIBlurEffectStyle.Light
?我在文档中找不到任何内容。但我希望它看起来类似于经典的UIImage+ImageEffects.h
模糊效果。
required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
let blur = UIBlurEffect(style: UIBlurEffectStyle.Light)
let effectView = UIVisualEffectView(effect: blur)
effectView.frame = frame
addSubview(effectView)
}