I'm trying to change the Status Bar color in my Swift app to white, but am hitting a brick wall. I have 3 ViewControllers that are each embedded in a NavigationController (could that be the issue? I've already tried to place the code in the NavigationController class.) I've tried both of the following pieces of code in the didFinishLaunchingWithOptions of my AppDelegate.swift file but neither worked.
application.statusBarStyle = .LightContent
and
UIApplication.sharedApplication().statusBarStyle = .LightContent
All that the Docs have to say about it is that UIBarButtonStyle is an Int and gave me this enum snippet which didn't help me at all with implimentation.
enum UIStatusBarStyle : Int {
case Default
case LightContent
case BlackOpaque
}
What am I missing?