iOS8之后 ,模糊效果简单实现
发表于:2024-11-27 作者:热门IT资讯网编辑
编辑最后更新 2024年11月27日,iOS8,之后:storyboard:直接搜索 控件Visual Effect View with Blur 拉到需要模糊效果视图的上方;纯代码:// 创建需要的毛玻璃特效类型UIBlurEffect
iOS8,之后:
storyboard:
直接搜索 控件Visual Effect View with Blur 拉到需要模糊效果视图的上方;
纯代码:
// 创建需要的毛玻璃特效类型
UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
// 毛玻璃view 视图
UIVisualEffectView *effectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];
//添加到要有毛玻璃特效的控件中
effectView.frame = self.p_w_picpathV.bounds;
[self.p_w_picpathV addSubview:effectView];
//设置模糊透明度
effectView.alpha = .8f