按钮模糊不起作用

时间:2017-06-10 12:02:51

标签: ios swift xcode uiblureffect

如何制作一个模糊的按钮?按钮后面是图像。

这是我的代码:

        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)

模糊效果不佳,请参见下图。

enter image description here

1 个答案:

答案 0 :(得分:0)

只需根据您的要求设置按钮background color及其opacity

enter image description here