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

sai*_*esh 2 iphone

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

And*_*rew 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);  
}
Run Code Online (Sandbox Code Playgroud)