2018-07-23 视图模糊效果

这里使用原生的UIVisualEffectView来实现模糊效果。

self.blurView = [[UIVisualEffectView alloc] initWithFrame:self.view.bounds];模糊视图布满整个视图


UITapGestureRecognizer *tap =[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(dismiss)];

 [self.blurView addGestureRecognizer:tap];//添加点击事件,把模糊视图移除掉

  [[UIApplication sharedApplication].keyWindow addSubview:self.blurView];//加入window


注意,这里并没有设置模糊效果,而是要在设置动画效果时设置模糊效果。这样会有简单的动画效果。

 [UIView animateWithDuration:0.5 animations:^(void){

            self.blurView.effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];//设置模糊效果

            self.blurView.alpha= 0.9;//设置模糊视图的透明度

 }];

你可能感兴趣的:(2018-07-23 视图模糊效果)