iOS 视图高斯模糊(毛玻璃)效果实现

/**
 *  高斯模糊(毛玻璃效果)
 *
 *  @param view 传入需要进行高斯模糊的视图
 *
 *  @return 返回经过处理后的视图
 */
- (UIView *)gaussView:(UIView *)view
{
    view.contentMode = UIViewContentModeScaleAspectFit;
    UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
    UIVisualEffectView *effectview = [[UIVisualEffectView alloc] initWithEffect:blur];
    effectview.frame = view.bounds;
    [view addSubview:effectview];
    return view;
}

作者邮件:[email protected], 有问题联系。

你可能感兴趣的:(iOS 视图高斯模糊(毛玻璃)效果实现)