Skip to content

Instantly share code, notes, and snippets.

@anuraagdjain
Created February 7, 2017 06:54
Show Gist options
  • Select an option

  • Save anuraagdjain/f532eeebd64d80521d6b842825e3e3fc to your computer and use it in GitHub Desktop.

Select an option

Save anuraagdjain/f532eeebd64d80521d6b842825e3e3fc to your computer and use it in GitHub Desktop.
Status bar light content
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
//In AppDelegate.swift
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
UIApplication.shared.statusBarStyle = .lightContent //White colored status.
return true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment