1

I'm making a game with Cinder for iOS, and I have no idea how to hide the status bar. I tried calling Cinder's built-in hideStatusBar() function, as well as setting the Status bar is initially hidden option to YES in my info.plist.

Neither of these methods work, even when combined. The status bar is visible both in iOS 8.1 simulator and on my iOS 7.1.2 testing device.

Any ideas?

notadam
  • 2,754
  • 2
  • 19
  • 35

1 Answers1

0

Okay, I found a solution. You need these TWO entries in your info.plist:

Status bar is initially hidden YES

View controller-based status bar appearance NO

That's it!

notadam
  • 2,754
  • 2
  • 19
  • 35