如何使视图模糊,就像在IOS 8中一样?

9 浏览
0 Comments

如何使视图模糊,就像在IOS 8中一样?

在Xcode 6中,我正在使用Objective-C制作一款游戏,当你输了的时候,我希望视图变得模糊。就像这样,但是模糊程度稍微低一些:enter image description here

0
0 Comments

你需要在UIVisualEffectsView中添加一个UIBlurEffect。这里有一个很好的教程,可能会帮助你解决问题。在提问之前,我建议你先做一些研究,因为有很多教程可以参考,而且这个问题之前已经被问过很多次了。

0
0 Comments

问题出现的原因:用户想要在iOS 8中实现视图模糊效果。

解决方法:

UIBlurEffect *blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleDark];

UIVisualEffectView *blurEffectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect];

[blurEffectView setFrame:self.view.bounds];

[self.view addSubview:blurEffectView];

0