码迷,mamicode.com
首页 > 其他好文 > 详细

毛玻璃CHBlurEffect

时间:2018-09-05 23:49:29      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:uiview   void   接口   文档   inter   objective   添加   copy   ref   

1、将需要加入毛玻璃的UI控件传入接口即可

  • 1.1 .h文件

    //
    // 文 件 名:CHBlurEffect.h
    // 
    // 版权所有:Copyright ? 2018年 leLight. All rights reserved.
    // 创 建 者:leLight 
    // 创建日期:2018/7/25.
    // 文档说明:
    // 修 改 人:
    // 修改日期:
    // 
    
    #import <Foundation/Foundation.h>
    
    @interface CHBlurEffect : NSObject
    
    /************ 设置毛玻璃效果,传入要加毛玻璃的视图,即可完成添加 ***********************/
    + (void)blurEffect:(UIView *)view;
    
    @end
  • 1.2 .m文件

    //
    // 文 件 名:CHBlurEffect.m
    // 
    // 版权所有:Copyright ? 2018年 leLight. All rights reserved.
    // 创 建 者:leLight 
    // 创建日期:2018/7/25.
    // 文档说明:
    // 修 改 人:
    // 修改日期:
    // 
    
    #import "CHBlurEffect.h"
    
    @implementation CHBlurEffect
    
    /************ 设置毛玻璃效果,传入要加毛玻璃的视图,即可完成添加 ***********************/
    + (void)blurEffect:(UIView *)view {
    
        UIBlurEffect *effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
        UIVisualEffectView *effectVIew = [[UIVisualEffectView alloc] initWithEffect:effect];
        effectVIew.frame = view.bounds;
        [view addSubview:effectVIew];
    }
    
    @end

毛玻璃CHBlurEffect

标签:uiview   void   接口   文档   inter   objective   添加   copy   ref   

原文地址:https://www.cnblogs.com/CH520/p/9593909.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!