标签:
UIImage *image = [UIImage imageNamed:@"icon"]; UIImageView *bgView = [[UIImageView alloc] initWithImage:image]; bgView.frame = CGRectMake(100, 300, 100, 100); [self.view addSubview:bgView]; UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleExtraLight]; UIVisualEffectView *blurView = [[UIVisualEffectView alloc] initWithEffect:blurEffect]; blurView.frame = bgView.frame; [self.view addSubview:blurView];
标签:
原文地址:http://www.cnblogs.com/airy99/p/4595873.html