ios毛玻璃效果实现

2018-05-08  本文已影响24人  豆里丸

毛玻璃的实现一般要用到以下几个类:

1、第一种毛玻璃效果


-(void)VisualEffectView{

    //先生成图片背景

    UIImageView *blurImag = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];

    blurImag.image= [UIImageimageNamed:@"homePage2"];

    [self.viewaddSubview:blurImag];


    UILabel*blurLabel = [[UILabelalloc]initWithFrame:CGRectMake(30,60,self.view.frame.size.width-60,300)];

    blurLabel.text = @"Our mind is sponge, our heart is stream.";

    /** 设置blurLabel的最大行数. */

    blurLabel.numberOfLines=2;

    /** 设置blurLabel的字体颜色. */

    blurLabel.textColor= [UIColorwhiteColor];

    /** 设置blurLabel的字体为系统粗体, 字体大小为34. */

    blurLabel.font= [UIFontboldSystemFontOfSize:34];


    /** 创建UIBlurEffect类的对象blur, 参数以UIBlurEffectStyleLight为例. */

    UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];

    /** 创建UIVisualEffectView的对象visualView, 以blur为参数. */

    UIVisualEffectView * visualView = [[UIVisualEffectView alloc] initWithEffect:blur];

    /** 将visualView的大小等于blurImageView的大小. (visualView的大小可以自行设定, 它的大小决定了显示毛玻璃效果区域的大小.) */

    visualView.frame= blurImag.bounds;


    visualView.alpha=1;

    /** 将visualView添加到blurImageView上. */

    [blurImag addSubview:visualView];

    [visualView.contentView addSubview:blurLabel];

}

Simulator Screen Shot - iPhone 8 - 2018-05-08 at 13.51.24.png

2、第二种效果

-(void)VisualEffectView2{
    /** 1. 创建UIImageView的对象vibrancyImageView. */
    UIImageView *vibrancyImageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 2*self.view.frame.size.width, self.view.frame.size.height)];
    
    UIImage *image = [UIImage imageNamed:@"homePage2"];
    
    /**
     * 在UIVibrancyEffect这种类型的毛玻璃中, 苹果官方API对UIImageView的image属性的渲染方式做出了要求:
     *      UIImageView will need its image to have a rendering mode of UIImageRenderingModeAlwaysTemplate to receive the proper effect.
     *
     * UIImageView的属性imgae的渲染方式要选择UIImageRenderingModeAlwaysTemplate, 会获得更好的效果.
     */
    
    /**
     * 给UIImage类的对象设置渲染方式的方法: - (UIImage * nonnull)imageWithRenderingMode:(UIImageRenderingMode)renderingMode
     * 参数renderingMode: typedef enum : NSInteger {
     UIImageRenderingModeAutomatic,
     UIImageRenderingModeAlwaysOriginal,
     UIImageRenderingModeAlwaysTemplate,
     information
     } UIImageRenderingMode;
     */
    [image imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
    
    vibrancyImageView.image = image;
    
    vibrancyImageView.userInteractionEnabled = YES;
    
    [self.view addSubview:vibrancyImageView];
    
    /** 2. 创建UILable的对象. */
    UILabel *vibrancyLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 60, self.view.frame.size.width - 20, 300)];
    
    vibrancyLabel.text = @"Our mind is a sponge, our heart is a stream.";
    
    vibrancyLabel.numberOfLines = 2;
    
    vibrancyLabel.textColor = [UIColor whiteColor];
    
    vibrancyLabel.font = [UIFont boldSystemFontOfSize:34];
    
    
    
    UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
    /**
     * 在上面我们提到过UIVisualEffectView类的类方法里的参数effect有两种类型:UIBlurEffect和UIVibrancyEffect.
     * 在这里我们创建UIVibrancyEffect类型的UIvisualEffectView;
     */
    
    /**
     * UIVibrancyEffect有两种创建方法, 在这里我们使用: + (UIVibrancyEffect *)effectForBlurEffect:(UIBlurEffect *)blurEffect
     *
     * 我们可以看出类方法中的参数类型是UIBlurEffect类型, 所以之前创建了一个UIBlurEffect的对象.
     */
    UIVibrancyEffect *vibrancy = [UIVibrancyEffect effectForBlurEffect:blur];
    
    /** 下面的步骤同上. */
    UIVisualEffectView * visualView = [[UIVisualEffectView alloc] initWithEffect:vibrancy];
    
    visualView.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);
    
    visualView.alpha = 1;
    
    [vibrancyImageView addSubview:visualView];
    
    [visualView.contentView addSubview:vibrancyLabel];
}
Simulator Screen Shot - iPhone 8 - 2018-05-08 at 13.50.27.png
上一篇下一篇

猜你喜欢

热点阅读