我想制作一个圆形的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)
答案 0 :(得分:8)
在添加子视图之前,将以下两行代码添加到项目中:
blur.layer.cornerRadius = 0.5 * shortcutButton.bounds.size.width
blur.clipsToBounds = true
享受! :)