Skip to main content
Inspiring
September 23, 2012
Question

Enable status bar ONLY on iPhone 5 where there is extra space?

  • September 23, 2012
  • 1 reply
  • 698 views

My app really needs as much screens space as it can get, execpt on iPhone 5 where there is a surplus of dead space. I need the status bar hidden on previous iPhones. Is there a way to make the status bar show on the iPhone 5 but not on others, so that iPhone 5ers can see the time, battery and other stuff?

This topic has been closed for replies.

1 reply

FLAdudeAuthor
Inspiring
September 24, 2012

Update: I finally figured it out myself. I took a shot in the dark and tried the stage.displayState property. It looked like a desktop specific thing but it actually worked on the iPhone.

stage.displayState = StageDisplayState.NORMAL

will show the status bar.

stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE

will hide the status bar.