Skip to content

Instantly share code, notes, and snippets.

@flaviodsilverio
Created October 19, 2017 09:39
Show Gist options
  • Save flaviodsilverio/50e68bf5579ff33678a9750aaa5c16a7 to your computer and use it in GitHub Desktop.
Save flaviodsilverio/50e68bf5579ff33678a9750aaa5c16a7 to your computer and use it in GitHub Desktop.
extension UIApplication {
class var statusBarBackgroundColor: UIColor? {
get {
return (shared.value(forKey: "statusBar") as? UIView)?.backgroundColor
} set {
(shared.value(forKey: "statusBar") as? UIView)?.backgroundColor = newValue
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment