标签:
- (void)viewDidLoad {
[super viewDidLoad];
// 做图片
UIImageView *myImgView = [[UIImageView alloc]initWithFrame:[UIScreen mainScreen].bounds];
myImgView.image = [UIImage imageNamed:@"A2D368D0CE416A120C9A4411C1B721CA.png"];
[self.view addSubview:myImgView];
//添加模糊效果
UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
//三种效果 UIBlurEffectStyleDark UIBlurEffectStyleExtraLight UIBlurEffectStyleLight
UIVisualEffectView *effectView = [[UIVisualEffectView alloc]initWithEffect:blurEffect];
effectView.frame = [UIScreen mainScreen].bounds;
[myImgView addSubview:effectView];
// Do any additional setup after loading the view, typically from a nib.
}
标签:
原文地址:http://www.cnblogs.com/godlovexq/p/5257568.html