ImageView图片的虚化

来源:互联网 发布:淘宝假货图片 编辑:程序博客网 时间:2024/04/28 19:13

     /*! 三种模糊的形式

         typedef NS_ENUM(NSInteger, UIBlurEffectStyle) {

         UIBlurEffectStyleExtraLight,

         UIBlurEffectStyleLight,

         UIBlurEffectStyleDark

         } NS_ENUM_AVAILABLE_IOS(8_0);

         */

    

    

    self.blurImageView = [[UIImageViewalloc]initWithFrame:CGRectMake(10, 210, 300, 200)];


    self.blurImageView.image = [UIImageimageNamed:@"00.jpg"];

    

    UIVisualEffect *blurEffect = [UIBlurEffecteffectWithStyle:UIBlurEffectStyleExtraLight];

    

    UIVisualEffectView *visualEffectView = [[UIVisualEffectViewalloc] initWithEffect:blurEffect];

    visualEffectView.alpha = 0.5;

    visualEffectView.frame = CGRectMake(0, 100, 300, 200);


    

    [self.blurImageViewaddSubview:visualEffectView];


0 0
原创粉丝点击