Setting statusbar style
rajdhakate opened this issue · 1 comments
rajdhakate commented
- (UIStatusBarStyle)preferredStatusBarStyle
never called. How can we set statusbar style to lightContent?
TimOliver commented
The status bar color is dictated by the barStyle
property of the UINavigationBar
of the UINavigationController
the view controller is added to. If you set the bar style to black, the status bar should turn to its white tint.
If you're not using a UINavigationController
and are using a custom view for the top, it might be easiest to subclass TOWebViewController
and then override the method in your subclass.
Hope that helped!