gpt4 book ai didi

ios - 快速模糊的背景和清晰的 subview

转载 作者:搜寻专家 更新时间:2023-11-01 07:12:07 25 4
gpt4 key购买 nike

我想要一个模糊的背景。我有一个主视图的 subview 。我希望 subview 不受模糊影响。我该怎么办?

代码:

let blurEffect = UIBlurEffect(style: UIBlurEffectStyle.dark)
let blurEffectView = UIVisualEffectView(effect: blurEffect)

blurEffectView.frame = view.bounds


let vibrancyEffect = UIVibrancyEffect(blurEffect: blurEffect)
let vibrancyEffectView = UIVisualEffectView(effect: vibrancyEffect)
vibrancyEffectView.frame = view.bounds

view.addSubview(blurEffectView)

view.addSubview(vibrancyEffectView)


FrameView = UIView()


if let FrameView = FrameView {

FrameView.layer.borderColor = UIColor.white.cgColor
FrameView.layer.borderWidth = 2
FrameView.frame=CGRect(x:30,y:(view.frame.height/2-50),width:view.frame.width-60,height:100)
blurEffectView.contentView.addSubview(FrameView)


}

所以我希望 View 模糊,FrameView 清晰。

这是我的应用目前的样子。

最佳答案

我尝试了一个测试项目,我首先将模糊添加到 mainView ,然后我将 frameView 添加到 mainView ,我似乎很好,frameView 不模糊。

    let mainView = UIImageView.init(frame: self.view.bounds);
mainView.image = UIImage.init(named: "a.png");
let blurEffect = UIBlurEffect.init(style: .dark);
let effectView = UIVisualEffectView.init(effect: blurEffect);
effectView.frame = mainView.bounds;
effectView.alpha = 1;

let frameView = UIImageView.init(frame: CGRect.init(x: 0, y: 0, width: 200, height: 50));
frameView.image = UIImage.init(named: "b.png");
frameView.center = self.view.center;
//add the blur view first
mainView.addSubview(effectView);
self.view.addSubview(mainView);
self.view.addSubview(frameView);

enter image description here

关于ios - 快速模糊的背景和清晰的 subview ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44276939/

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