美文网首页
毛玻璃的基本使用

毛玻璃的基本使用

作者: Living_U | 来源:发表于2016-08-03 10:02 被阅读23次

//初始化毛玻璃效果

//style的三种方式

/**

*  UIBlurEffectStyleExtraLight,

*  UIBlurEffectStyleLight,

*  UIBlurEffectStyleDark

**/

UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];

//添加毛玻璃视图,将毛玻璃效果添加到视图上

UIVisualEffectView *visibleView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];

//设置毛玻璃视图的大小

visibleView.frame = self.view.bounds;

//添加毛玻璃视图

[self.view addSubview:visibleView];

相关文章

网友评论

      本文标题:毛玻璃的基本使用

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