iOS 毛玻璃效果设置

Posted 栗子Blog

tags:

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

//设置毛玻璃效果
+(void)blurEffrct:(UIView *)view{
    UIBlurEffect* effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
    UIVisualEffectView* effectView = [[UIVisualEffectView alloc] initWithEffect:effect];
    effectView.frame =view.bounds;
    [view addSubview:effectView];

}

 

 [Healp blurEffrct:bgImageVIew];//设置毛玻璃效果

 

以上是关于iOS 毛玻璃效果设置的主要内容,如果未能解决你的问题,请参考以下文章

iOS 毛玻璃效果设置

iOS开发探索-高斯模糊&毛玻璃效果

iOS 实现简单的毛玻璃效果

iOS 高斯模糊 毛玻璃效果

IOS实现毛玻璃效果的三种方式

转css3实现ios7“毛玻璃”模糊效果