-1

I would like to change the status bar text (the text at the top of the screen with the time, battery percentage, etc) to white. How can I do this?

rmaddy
  • 314,917
  • 42
  • 532
  • 579
Isaac A
  • 361
  • 2
  • 24
  • possible duplicate http://stackoverflow.com/questions/17678881/how-to-change-status-bar-text-color-in-ios-7?page=1&tab=votes#tab-top – alephao Nov 15 '15 at 15:37

1 Answers1

0

If your view controller is within a navigation controller, in the view controller's .m , use this line in your viewDidLoad:

self.navigationController.navigationBar.barStyle = UIBarStyleBlack;
Isaac A
  • 361
  • 2
  • 24