图片设置毛玻璃效果

//  创建需要的毛玻璃特效类型
    
    UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
    
    //  毛玻璃view 视图
    
    UIVisualEffectView *effectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
    
    //添加到要有毛玻璃特效的控件中
    
    effectView.frame = self.SecuritySettingImgV.bounds;
    
    [self.SecuritySettingImgV addSubview:effectView];
    
    //设置模糊透明度
    
    effectView.alpha = .2f;

你可能感兴趣的:(图片设置毛玻璃效果)