如何制作一个模糊的按钮?按钮后面是图像。
这是我的代码:
let blur = UIVisualEffectView(effect: UIBlurEffect(style: UIBlurEffectStyle.regular))
blur.frame = cell.lvlBut.bounds
blur.isUserInteractionEnabled = false
blur.layer.cornerRadius = 0.5 * cell.lvlBut.bounds.size.width
blur.clipsToBounds = true
cell.lvlBut.insertSubview(blur, at: 0)
模糊效果不佳,请参见下图。