swift – 为UIButton添加模糊效果

前端之家收集整理的这篇文章主要介绍了swift – 为UIButton添加模糊效果前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何让按钮背景变得模糊?

我发现这会产生模糊效果

let blur = UIVisualEffectView(effect: UIBlurEffect(style: UIBlurEffectStyle.Light))
blur.frame = buttonForDisabling.frame
self.tableView.addSubview(blur)

这是有效的,但只能使用与我的按钮相同的框架进行模糊处理.我想要一个背景模糊的按钮.在iOS8中可以吗?

这可以通过创建模糊并将其插入UIButton的titleLabel下方来完成.禁用用户交互非常重要,以便允许触摸不被视觉效果视图拦截并转发到按钮.
let blur = UIVisualEffectView(effect: UIBlurEffect(style:
    UIBlurEffectStyle.Light))
blur.frame = buttonForDisabling.bounds
blur.userInteractionEnabled = false //This allows touches to forward to the button. 
buttonForDisabling.insertSubview(blur,atIndex: 0)
原文链接:https://www.f2er.com/swift/319031.html

猜你在找的Swift相关文章