在我的应用中,我只在项目设置中选择了肖像模式:
我以这种方式使用它:
player = [[MPMoviePlayerController alloc] init];
[player setContentURL:videoURL];
[player play];
但是当我使用MPMoviePlayerController
全屏显示视频并尝试旋转它时,不要旋转,并保持在portrait
,有一种简单的方法可以启用{{1在项目设置中模式,以全屏显示landscape
?
答案 0 :(得分:4)
您有两个选择:
supportedInterfaceOrientations
。application:supportedInterfaceOrientationsForWindow:
方法,并在播放电影时确保返回UIInterfaceOrientationMaskAllButUpsideDown
。