小编Rs2*_*845的帖子

Swift:圆形UIButton,背景模糊

我想制作一个圆形的UIButton但是具有光线模糊效果和活力,因为它的背景

到目前为止,我已经有了一个圆形的UIButton,但我在网上找到的代码(我是iOS新手,我不是很了解模糊等是如何工作的)添加模糊只是将它作为整个按钮的框架,基本上使按钮再次显示为方形.

我也尝试添加一个视图,然后是UIButton,然后是模糊效果,并将cornerRadius代码应用于该视图,但它也无效.

这是我尝试过的:

    shortcutButton.layer.cornerRadius = 0.5 * shortcutButton.bounds.size.width // add the round corners in proportion to the button size

    let blur = UIVisualEffectView(effect: UIBlurEffect(style:
        UIBlurEffectStyle.Light))
    blur.frame = shortcutButton.bounds
    blur.userInteractionEnabled = false //This allows touches to forward to the button.
    shortcutButton.insertSubview(blur, atIndex: 0)
Run Code Online (Sandbox Code Playgroud)

cornerradius uibutton swift uiblureffect swift2

5
推荐指数
1
解决办法
5074
查看次数

标签 统计

cornerradius ×1

swift ×1

swift2 ×1

uiblureffect ×1

uibutton ×1