iOS 视图高斯模糊(毛玻璃)效果实现
作者:
小緈福 | 来源:发表于
2021-07-20 16:27 被阅读0次/**
* 高斯模糊(毛玻璃效果)
*
* @param view 传入需要进行高斯模糊的视图
*
* @return 返回经过处理后的视图
*/
- (UIView *)gaussView:(UIView *)view
{
view.contentMode = UIViewContentModeScaleAspectFit;
UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
UIVisualEffectView *effectview = [[UIVisualEffectView alloc] initWithEffect:blur];
effectview.frame = view.bounds;
[view addSubview:effectview];
return view;
}
本文标题:iOS 视图高斯模糊(毛玻璃)效果实现
本文链接:https://www.haomeiwen.com/subject/xzrzsltx.html
网友评论