2

Possible Duplicate:
Hide the status while playing movie using MPMoviePlayerController

It seems that if you play a movie full screen the status bar is turned back on. You can hide it on movie load but as soon as you click the controls to come up it reappears. There seems to be no movie controls appear events.

Update: This is only an issue if you tab the screen for the movie controls to come up. Its something to do with the movie control.

Community
  • 1
  • 1
Burf2000
  • 5,001
  • 14
  • 58
  • 117

1 Answers1

2

Otherwise you could:

Use this when you want it to show:

[[UIApplication sharedApplication] setStatusBarHidden:NO animated:NO]];

Use this when you want to hide it:

[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO]]; 
gotnull
  • 26,454
  • 22
  • 137
  • 203