I have a problem with status bar. I'm working with MediaPlayer. When I watch a video and press a button "Done" there is statu开发者_Python百科s bar. But when I watch video, press button "Pause" and then press button "Done" there is NO status bar. How can I fix it?
Have you tried setting the hidden
property after you press the Done button?
[[UIApplication sharedApplication] setStatusBarHidden: NO];
精彩评论