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

制作毛玻璃效果

时间:2015-07-14 10:11:16      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:图片   imageview   ios   ios开发   

 //添加一个图片
    UIImageView *imageview = [[UIImageView alloc]init];
    imageview.frame = CGRectMake(10, 100, 300, 300);
    
    imageview.contentMode = UIViewContentModeScaleAspectFit;
    
    imageview.userInteractionEnabled = YES;
    
    imageview.image = [UIImage imageNamed:@"3.jpg"];
    
    [self.view addSubview:imageview];
    
    //模糊效果代码
   UIBlurEffect *errect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleExtraLight];


    UIVisualEffectView *ectView = [[UIVisualEffectView alloc]initWithEffect:errect];
    ectView.alpha = 0.6;
    
   ectView.frame = CGRectMake(0, 0, imageview.frame.size.width/2, 300);
    
    
    [imageview addSubview:ectView];
    
    UIButton *btn = [UIButton buttonWithType:UIButtonTypeSystem];
    
    btn.frame =CGRectMake(10,50, 100, 40);
    [btn setTitle:@"btn"forState:UIControlStateNormal];
    [ectView.contentView addSubview:btn];

版权声明:本文为博主原创文章,未经博主允许不得转载。

制作毛玻璃效果

标签:图片   imageview   ios   ios开发   

原文地址:http://blog.csdn.net/q644419002/article/details/46872719

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