0

我只想在使用 ios6 中的 MPMoviePlayerController 全屏播放视频时以横向模式显示视频。我的应用程序仅支持纵向模式。

有人可以建议我吗,我该怎么做?

谢谢。

4

2 回答 2

1

我从下面的链接得到了答案

iOS 6 MPMoviePlayerViewController 和 presentMoviePlayerViewControllerAnimated Rotation

将应用程序委托文件更改为流程及其工作:

在ios6中只将UIview名称更改为MPSwipableView

- (NSUInteger) application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
   if ([[self.window.subviews.lastObject class].description isEqualToString:@"MPSwipableView"]) {
      return UIInterfaceOrientationMaskAllButUpsideDown;
   }
   else {
      return UIInterfaceOrientationMaskPortrait;
   }
}
于 2013-09-16T08:01:55.917 回答
0

在你的 viewController 中,实现这个方法,

-(NSUInteger)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskLandscape
}
于 2013-09-16T06:23:01.077 回答