美文网首页
高斯模糊

高斯模糊

作者: 水灵芳蕥 | 来源:发表于2018-06-28 15:54 被阅读13次

    /**

      * 创建需要的毛玻璃特效类型

      */

      UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];

     /**

      * 毛玻璃view 视图

      */

      UIVisualEffectView *effectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];

     /**

      * 添加到要有毛玻璃特效的控件中

      */

      effectView.frame = imageview.bounds;

      [imageview addSubview:effectView];

     /**

      * 设置模糊透明度

      */

      effectView.alpha = 0.8;

    相关文章

      网友评论

          本文标题:高斯模糊

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