Skip to content

Instantly share code, notes, and snippets.

@SachK13
Created December 20, 2016 04:37
Show Gist options
  • Save SachK13/b1c40eba4167ac3e0b22cb15fa8154dd to your computer and use it in GitHub Desktop.
Save SachK13/b1c40eba4167ac3e0b22cb15fa8154dd to your computer and use it in GitHub Desktop.
Change Status Bar Background Color.
func setStatusBarBackgroundColor(color: UIColor) {
guard let statusBar = UIApplication.sharedApplication().valueForKey("statusBarWindow")?.valueForKey("statusBar") as? UIView else {
return
}
statusBar.backgroundColor = color
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment