我的應用支持的界面方向爲肖像和顛倒。但是,當播放視頻時,我希望它播放全屏風景。目前使用此代碼,它只能播放肖像,即使設備旋轉:如何在僅肖像應用中使用MPMovieViewController播放風景視頻
[player.moviePlayer setControlStyle:MPMovieControlStyleFullscreen];
player.view.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
[self presentMoviePlayerViewControllerAnimated:player];
我怎麼能強迫它進入橫向模式?
對於iOS6的,這個答案是更好: http://stackoverflow.com/questions/12577879/shouldautorotatetointerfaceorientation-is-not-working-in-ios-6 – fpauer