2010-07-07 60 views

回答

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); 
} 
+0

同意安德鲁我做了同样的事情 – harshalb 2010-07-09 08:55:58

+1

@andrew:我也使用你的方法,但有时它仍然在肖像模式下播放视频 – QViet 2011-07-26 10:44:00

相关问题