// 这里是为了演示 创建一个 imageView
UIImageView * imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"图片名"]];
imageView.frame = CGRectMake(0, 0, CGRectGetWidth(self.view.frame), CGRectGetHeight(self.view.frame));
[self.view addSubview:imageView];
/*************** 毛玻璃效果 *********************/
UIBlurEffect * blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
//effectWithStyle:中有三种样式的 毛玻璃状态
UIVisualEffectView * effectView = [[UIVisualEffectView alloc] initWithEffect:blur];
effectView.frame = CGRectMake(0, 0, self.view.frame.size.width, 300);
// 将创建好的 effectView对象 加在 你想要实现 效果 的 图层上面
[imageView addSubview:effectView];
/*************** 毛玻璃效果 *********************/
网友评论