1. 程式人生 > >毛玻璃效果iOS

毛玻璃效果iOS

一張清楚的圖片變的模糊了,也就是所謂的毛玻璃效果,通過檢視圖層可以發現,它只是在原有的圖片上加了一個View,而這個View具有毛玻璃效果,

圖層檢視如下圖所示:

最終效果圖如下圖:

複製程式碼
1 1     // 建立圖片
2 2     UIImageView *imgView = [[UIImageView alloc]initWithFrame:[UIScreen mainScreen].bounds];
3 3     imgView.image = [UIImage imageNamed:@"1"];
4 4     [self.view addSubview:imgView];
5 5
//新增模糊效果 6 6 UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]; 7 7 UIVisualEffectView *effectView = [[UIVisualEffectView alloc]initWithEffect:blurEffect]; 8 8 effectView.frame = [UIScreen mainScreen].bounds; 9 9 [imgView addSubview:effectView];