美文网首页
ios高斯模糊背景

ios高斯模糊背景

作者: 独角兽_d8a4 | 来源:发表于2019-07-12 15:52 被阅读0次

ios自带高斯模糊涂层控件,类似一个view。放上去就可以实现背景高斯模糊。特别是对于需要高斯模糊的区域有动态刷新的view简直好用到哭!!!

UIVisualEffectView *effectView = [[UIVisualEffectView alloc] initWithEffect:[UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]];

    effectView.frame = [UIScreen mainScreen].bounds;

    [self.view addSubview:effectView];

    [self.view sendSubviewToBack:effectView];

相关文章

网友评论

      本文标题:ios高斯模糊背景

      本文链接:https://www.haomeiwen.com/subject/aqqykctx.html