gpt4 book ai didi

ios - 更改状态栏的前景色

转载 作者:行者123 更新时间:2023-11-28 16:09:50 26 4
gpt4 key购买 nike

我在 swift 2.3 中使用了这段代码来改变状态栏的前景色:

(application.value(forKey: "statusBar") as AnyObject).setValue(UIColor.red, forKey: "foregroundColor")

但是在 swift 3.0 的更新中,这部分不起作用,因为状态栏没有前景键。

有人能够在 swift 3.0 中更改状态栏的颜色吗?

谢谢。

最佳答案

我用 AppDelegate 中的这几行解决了我的问题:

let statusBar: UIView = UIApplication.shared.value(forKey: "statusBar") as! UIView
statusBar.setValue(UIColor.red, forKey: "_foregroundColor")

问候。

关于ios - 更改状态栏的前景色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39728617/

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