美文网首页
iOS给UIView添加高斯模糊效果

iOS给UIView添加高斯模糊效果

作者: 香橙柚子 | 来源:发表于2017-06-29 11:02 被阅读0次

    有的时候需要添加一个高斯模糊效果,或者毛玻璃效果,但是高斯模糊是针对图片的,处理图片的像素.UIView应该怎么做呢?
    上代码:

    UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
    UIVisualEffectView *effectview = [[UIVisualEffectView alloc] initWithEffect:blur];
    effectview.frame =self.view.frame;
    [self.view addSubview:effectview];
    

    相关文章

      网友评论

          本文标题:iOS给UIView添加高斯模糊效果

          本文链接:https://www.haomeiwen.com/subject/rxrmcxtx.html