标签:
直接上代码
UIView *myView = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
myView.backgroundColor = [UIColor redColor];
[self.view addSubview:myView];
//承载毛玻璃的底面
UIBlurEffect *blur = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
//毛玻璃效果
UIVisualEffectView *effectView = [[UIVisualEffectView alloc] initWithEffect:blur];
effectView.frame = CGRectMake(0, 0, 300, self.view.frame.size.height);
[myView addSubview:effectView];
怎么样? 是不是比较简单呢 ?
标签:
原文地址:http://www.cnblogs.com/JJFly/p/4297327.html