iOS 毛玻璃效果
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 毛玻璃效果相关的知识,希望对你有一定的参考价值。
UIImageView * image=[[UIImageView alloc]init];
image.frame=CGRectMake(0, 0, 320, 568);
image.image=[UIImage imageNamed:@"Guide_img_1"];
[self.view addSubview:image];
UIBlurEffect * blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleExtraLight];
UIVisualEffectView * effe = [[UIVisualEffectView alloc]initWithEffect:blur];
effe.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);
// 把要添加的视图加到毛玻璃上
[self.view addSubview:effe];
以上是关于iOS 毛玻璃效果的主要内容,如果未能解决你的问题,请参考以下文章