gpt4 book ai didi

ios - UIVisualEffectView 'disappears' 当放置在白色背景下时

转载 作者:行者123 更新时间:2023-11-28 05:52:51 25 4
gpt4 key购买 nike

我正在尝试重新创建一个类似于 App Store 故事页脚中使用的 UIVisualEffectView。虽然它看起来很简单,但我无法配置模糊以在白色背景下以相同方式响应。

开箱即用,带有 .light.extraLight.prominent.default 的 UIVisualEffectView > blurEffect 放在白色背景上时几乎不可见。我认为我在活力方面遗漏了一些明显的东西,但我已经调整了一段时间的值,但我无法正确地重新创建效果。

Get app footer


这是我正在做的事情,以及它在全白背景下的样子。

let backgroundView = UIView(frame: CGRect(x: 0, y: 0, width: view.frame.width, height: 300))
backgroundView.backgroundColor = .white
view.addSubview(backgroundView)

let blurView = UIVisualEffectView(effect: UIBlurEffect(style: .extraLight))
blurView.frame = CGRect(x: 50, y: 50, width: 150, height: 150)
backgroundView.addSubview(blurView)

screenshot

最佳答案

您始终可以通过更改背景颜色来更改 UIVisualEffectView 的色调。我猜你正在寻找类似的东西

blurView.backgroundColor = UIColor.lightGray.withAlphaComponent(0.7)

关于ios - UIVisualEffectView 'disappears' 当放置在白色背景下时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52283807/

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