How to change UIStatusBarStyle in iOS 7 in modal views with navigation bar?

后端 未结 9 2412
孤独总比滥情好
孤独总比滥情好 2020-12-31 11:32

The iOS 7 Transition Guide give a good hint how to change the UIStatusBarStyle dynamically in a UIViewController using

- (UIStatus         


        
9条回答
  •  长发绾君心
    2020-12-31 12:04

    To change the status bar of the UINavigationController embedding your ViewController without subclassing UINavigationController, use this:

    navigationController?.navigationBar.barStyle = .Black // to make the status bar text white
    

    .Black will make the text white (status bar and the view's title), while .Default has a black title and status bar.

提交回复
热议问题