如何在横向模式下播放视频

时间:2014-06-04 07:31:19

标签: ios screen-orientation

今天的问候,

我在纵向模式下正在做全部应用。但是,在我的应用程序中有视频标签。选择一个视频时,它仅以人像模式播放。但我只想在风景模式下玩。

谢谢

1 个答案:

答案 0 :(得分:0)

您可以创建MPMoviePlayerController的子类,并实现以下三种方法:

- (BOOL)shouldAutorotate
{
    return YES;
}

- (NSUInteger)supportedInterfaceOrientations
{
    return UIInterfaceOrientationLandscapeLeft || UIInterfaceOrientationLandscapeRight; 
}


- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
    return UIInterfaceOrientationLandscapeLeft;
}

最后,使用您的MPMoviePlayerController子类来播放视频。