iOS 8 模糊视图(毛玻璃效果)的简单实现UIVisualEffectView
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 8 模糊视图(毛玻璃效果)的简单实现UIVisualEffectView相关的知识,希望对你有一定的参考价值。
在须要模糊的UIView上。加入一个UIVisualEffectView对象就可以。
效果例如以下图:
代码例如以下:
UIImageView *imageview = [[UIImageViewalloc] init];
imageview.frame =CGRectMake(10,100, 300, 300);
imageview.image = [UIImageimageNamed:@"2"];
imageview.contentMode =UIViewContentModeScaleAspectFit;
imageview.userInteractionEnabled =YES;
[self.viewaddSubview:imageview];
UIBlurEffect *blur = [UIBlurEffecteffectWithStyle:UIBlurEffectStyleLight];
UIVisualEffectView *effectview = [[UIVisualEffectViewalloc] initWithEffect:blur];
effectview.frame =CGRectMake(0,0, imageview.size.width/2,300);
[imageviewaddSubview:effectview];
UIButton *btn = [UIButtonbuttonWithType:UIButtonTypeSystem];
btn.frame =CGRectMake(10,50, 100, 40);
[btn setTitle:@"btn"forState:UIControlStateNormal];
[effectview.contentViewaddSubview:btn];
ios开发交流群361513739
以上是关于iOS 8 模糊视图(毛玻璃效果)的简单实现UIVisualEffectView的主要内容,如果未能解决你的问题,请参考以下文章
移动端UI设计越来越流行的高斯模糊(Gaussian blur)和毛玻璃效果(磨砂效果),如何使用Android RenderScript简单实现?