Created
February 7, 2017 06:54
-
-
Save anuraagdjain/f532eeebd64d80521d6b842825e3e3fc to your computer and use it in GitHub Desktop.
Status bar light content
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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