Summary: I'm wondering why the MPMoviePlayerController is being pushed down by the navigation bar in landscape orientation.
In my iOS app I have a simple tableView. When I tap a cell I modally present an instance of myViewController wrapped in a UINavigationController. myViewController has an instance of MPMoviePlayerController as a subview.
The moviePlayer and associated controls are being pushed down and slightly off the bottom of the screen. I can fix this by hiding the navigation bar. However I want to show the navigation bar with the video.
What's the best/correct way to prevent the video and controls from being pushed down and slightly off screen?
I've looked at the frame of the moviePlayer, the frame of the myViewController's view etc and am still a bit confused.