5

我正在尝试使用UIView带有 a效果的UIVisualEffectView子视图制作 a UIBlurEffect。视图是在屏幕一侧创建的,然后使用动画滑入。

在模拟器上一切正常(我在 iPhone 4S 和 iPhone 6 上测试过),但在我的手机(iPhone 6)上,模糊并没有模糊,它看起来更像是深灰色,alpha值为 0.5。此外,当我截取设备的屏幕截图或从主屏幕打开它时,会在再次开始一致渲染之前为该单帧渲染模糊。

这是当前视图的屏幕截图: 在此处输入图像描述

然而,在设备上,模糊不存在,它本质上只是一个黑暗、透明的视图。

这是我用来初始化视图的代码,blurViewvibrancyView属性被声明为全局变量:

init(left: Bool){
    self.left = left
    let screenSize = UIScreen.mainScreen().bounds.size

    var rect: CGRect
    if left{
        rect = CGRectMake(-screenSize.width*0.3, 0, screenSize.width*0.3, screenSize.height)
    }else{
        rect = CGRectMake(screenSize.width, 0, screenSize.width*0.3, screenSize.height)
    }

    super.init(frame: rect)
    let blurEffect = UIBlurEffect(style: UIBlurEffectStyle.Dark)
    blurView = UIVisualEffectView(effect: blurEffect)
    blurView.frame = CGRectMake(0, 0, self.frame.width, self.frame.height)
    self.addSubview(blurView)
    let vibrancy = UIVibrancyEffect(forBlurEffect: blurEffect)
    vibrancyView = UIVisualEffectView(effect: vibrancy)
    vibrancyView.frame = blurView.frame
    blurView.addSubview(vibrancyView)

    self.userInteractionEnabled = true
}

并将包含 blurView 的 superView 移动到:

func moveIn(){
    UIView.animateWithDuration(0.3, animations: { () -> Void in
        var center = self.center
        if self.left{
            center.x = UIScreen.mainScreen().bounds.size.width*0.15
        }else{
            center.x = UIScreen.mainScreen().bounds.size.width*0.85
        }
        self.center = center
    })
}

正如我之前所说的动画和这样的作品很好,但 blurView 不会模糊。

我不确定这是怎么回事,这让我觉得这与渲染帧有关,但我不是大师,所以如果有人有任何想法,我将不胜感激。

4

2 回答 2

3

要关闭它,这是因为我在大多数应用程序中使用 SpriteKit,因此使用 SKView 而不是 UIView。我意识到我没有在问题中提到这一点,但我不知道这将是一个问题。显然 SKView 遵循不同的渲染路径,因此不会变得模糊,建议的方法是 effectnode。

于 2015-02-09T09:01:54.547 回答
0

blurView.frame = CGRectMake(0, 0, self.frame.width, self.frame.height)init 方法中的self.frameinline 在 layoutSubviews 之前可以为零。当 self.frame 存在时设置 blurView 框架

于 2015-02-12T12:20:20.397 回答