码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 毛玻璃效果

时间:2016-01-27 16:58:15      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

    UIImageView * image=[[UIImageView alloc]init];

    image.frame=CGRectMake(0, 0, 320, 568);

    image.image=[UIImage imageNamed:@"Guide_img_1"];

    [self.view addSubview:image];

    

    UIBlurEffect * blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleExtraLight];

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

    effe.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);

    // 把要添加的视图加到毛玻璃上

    [self.view addSubview:effe];

 

iOS 毛玻璃效果

标签:

原文地址:http://www.cnblogs.com/tongyuling/p/5163814.html

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