圖片設置毛玻璃效果

//  建立須要的毛玻璃特效類型
    
    UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
    
    //  毛玻璃view 視圖
    
    UIVisualEffectView *effectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
    
    //添加到要有毛玻璃特效的控件中
    
    effectView.frame = self.SecuritySettingImgV.bounds;
    
    [self.SecuritySettingImgV addSubview:effectView];
    
    //設置模糊透明度
    
    effectView.alpha = .2f;it

相關文章
相關標籤/搜索