view添加毛玻璃效果两种方法

Posted 初秋的天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了view添加毛玻璃效果两种方法相关的知识,希望对你有一定的参考价值。

第一种方法:
UIBlurEffect *effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];   
UIVisualEffectView *effectView = [[UIVisualEffectView alloc] initWithEffect:effect];   
effectView.alpha = 0.9;   
effectView.frame = CGRectMake(0, 0, bgImageView.frame.size.width, bgImageView.frame.size.height);
[bgImageView addSubview:effectView];
 
第二种方法:
UIToolbar *toolbar = [[UIToolbaralloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];   
toolbar.barStyle = UIBarStyleDefault;
[_backImg addSubview:toolbar];

以上是关于view添加毛玻璃效果两种方法的主要内容,如果未能解决你的问题,请参考以下文章

毛玻璃背景效果

CSS代码片段

CSS代码片段

iOS View 模糊效果(毛玻璃)

教你几行代码实现图片的模糊效果

ios毛玻璃效果