ImageView图片的虚化

     /*! 三种模糊的形式

         typedef NS_ENUM(NSInteger, UIBlurEffectStyle) {

         UIBlurEffectStyleExtraLight,

         UIBlurEffectStyleLight,

         UIBlurEffectStyleDark

         } NS_ENUM_AVAILABLE_IOS(8_0);

         */

    

    

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


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

    

    UIVisualEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleExtraLight];

    

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

    visualEffectView.alpha = 0.5;

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


    

    [self.blurImageView addSubview:visualEffectView];


你可能感兴趣的:(UI,控件相关)