模糊视图与淡化边缘效果 - iOS

时间:2016-01-13 17:09:17

标签: ios uiview uiimageview calayer uiblureffect

如下图所示,我想创建具有淡化边缘效果的模糊视图。有人给我写了如何在ios中实现这个的代码吗?

由于

please take a look at this image - marked in red rectangle

1 个答案:

答案 0 :(得分:1)

let blurEffect = UIBlurEffect(style: .Light)
let imageView = UIImageView(image: UIImage(named:))//your ImageView
let visualEffectView = UIVisualEffectView(effect: blurEffect)
imageView.addSubview(visualEffectView)

您可能需要更改visualEffectView的框架以覆盖您的图像,但这是它的基础。