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 毛玻璃效果设置的主要内容,如果未能解决你的问题,请参考以下文章