我想在iPhone SDK.40(MPMoviePlayerViewController)中仅以横向模式播放视频。它不应该支持肖像模式播放。我们如何做到这一点。
答案 0 :(得分:11)
我在这里找到了这个文档:
所以基本上你只需要创建自己的MPMoviePlayerViewController子类并覆盖shouldAutorotateToInterfaceOrientation:方法,如下所示:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
return UIInterfaceOrientationIsLandscape(toInterfaceOrientation);
}