程序问答   发布时间:2022-06-02  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了在Swift 3中更改状态栏背景颜色大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

如何解决在Swift 3中更改状态栏背景颜色?

开发过程中遇到在Swift 3中更改状态栏背景颜色的问题如何解决?下面主要结合日常开发的经验,给出你关于在Swift 3中更改状态栏背景颜色的解决方法建议,希望对你解决在Swift 3中更改状态栏背景颜色有所启发或帮助;

extension UIApplication { var statusbarVIEw: UIVIEw? { if responds(to: SELEctor((“statusbar”))) { return value(forKey: “statusbar”) as? UIVIEw } return nil } }

UIApplication.shared.statusbarVIEw?.BACkgroundcolor = .red

解决方法

在XCode 7.3.x中,我用以下方法更改了StatusBar的背景颜色:

func setStatusBarBACkgroundColor(color: UIColor) {
guard  let statusBar = UIApplication.sharedApplication().valueForKey("statusBarWindow")?.valueForKey("statusBar") as? UIView else {
    return
}
statusBar.BACkgroundColor = color
}

但是似乎这在Swift 3.0中不再起作用。

病态尝试:

func setStatusBarBACkgroundColor(color: UIColor) {
guard  let statusBar = (UIApplication.shared.value(forKey: "statusBarWindow") as AnyObject).value(forKey: "statusBar") as? UIView else {
    return
}
statusBar.BACkgroundColor = color
}

但这给了我:

this class is not key value coding-compliant for the key statusBar.

有任何想法如何使用XCode8 / Swift 3.0进行更改吗?

大佬总结

以上是大佬教程为你收集整理的在Swift 3中更改状态栏背景颜色全部内容,希望文章能够帮你解决在Swift 3中更改状态栏背景颜色所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。