美文网首页
毛玻璃效果

毛玻璃效果

作者: Dove_iOS | 来源:发表于2016-05-14 09:47 被阅读136次

```

// 毛玻璃效果

UIBlurEffect*effect = [UIBlurEffecteffectWithStyle:UIBlurEffectStyleLight];

UIVisualEffectView*aView = [[UIVisualEffectViewalloc]initWithEffect:effect];

aView.frame=self.view.bounds;

aView.alpha=0;

[self.viewaddSubview:aView];

```

相关文章

网友评论

      本文标题:毛玻璃效果

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