MPMoviePlayerViewController仅在横向模式下播放电影

时间:2010-07-07 10:56:05

标签: iphone

我想在iPhone SDK.40(MPMoviePlayerViewController)中仅以横向模式播放视频。它不应该支持肖像模式播放。我们如何做到这一点。

1 个答案:

答案 0 :(得分:11)

我在这里找到了这个文档:

http://developer.apple.com/iphone/library/documentation/mediaplayer/reference/mpmovieplayerviewcontroller_class/Reference/Reference.html#//apple_ref/occ/instm/MPMoviePlayerViewController/shouldAutorotateToInterfaceOrientation

所以基本上你只需要创建自己的MPMoviePlayerViewController子类并覆盖shouldAutorotateToInterfaceOrientation:方法,如下所示:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation 
{  
     return UIInterfaceOrientationIsLandscape(toInterfaceOrientation);  
}