You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that the only way to fix this is configure status bar of GDPerformanceVIew root view controller. So now you can use something like this - 'GDPerformanceMonitor.sharedInstance.configureStatusBarAppearance(prefersStatusBarHidden: false, preferredStatusBarStyle: UIStatusBarStyle.lightContent)'
Now that the status bar is visible on iOS 9 I recognized that the status bar style set by the view controller is ignored. My code is pretty simple:
`
override var prefersStatusBarHidden: Bool {
return false
}
override var preferredStatusBarStyle: UIStatusBarStyle {
return isDarkMode ? .lightContent : .default
}
`
The status bar style is switching on iOS 10 but not on iOS 9 (where it is always default).
The text was updated successfully, but these errors were encountered: