gpt4 book ai didi

ios - UIBlurEffect 在设备上不模糊但在模拟器中有效

转载 作者:搜寻专家 更新时间:2023-10-30 23:15:41 28 4
gpt4 key购买 nike

我正在尝试制作一个带有 UIVisualEffectView subview 的 UIView,并以 UIBlurEffect 作为效果。 View 在屏幕的一侧创建,然后使用动画滑入。

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

这是当前 View 的屏幕截图: enter image description here

但是在设备上不存在模糊,它本质上只是一个黑暗、透明的 View 。

这是我用来初始化 View 的代码,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 不会模糊。

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

最佳答案

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

关于ios - UIBlurEffect 在设备上不模糊但在模拟器中有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28202433/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com