I have an app that plays video, and I had some issues on the app behaving normally upon playback. The status bar used to disappear entirely, but that was fixed. However, the status bar is overlapping the view controller, as it seems the view controller is behaving as if the status bar wasn't there. I tried using
Code:
self.view.frame = [[UIScreen mainScreen] applicationFrame];
in the viewWillAppear method, but to no avail.
Any ideas?