iPad上的MPMoviePlayerViewController查看Landscape

时间:2010-06-07 15:13:38

标签: ipad mpmovieplayercontroller landscape

我有一个视图和一个MPMoviePlayerViewController .. iPad面向横向左侧模式,但是当我播放视频时,视频很容易在纵向模式下看到...... 有没有办法强制电影播放器​​以横向模式旋转? 提前谢谢

2 个答案:

答案 0 :(得分:4)

@interface MyMovieViewController : MPMoviePlayerViewController
@end

@implementation MyMovieViewController
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
    return UIInterfaceOrientationIsLandscape(toInterfaceOrientation);
}

@end

然后只是实例化MyMovieViewController而不是MPMoviePlayerViewController。

答案 1 :(得分:3)

您可以通过

强制MPMoviePlayerView控制器在横向模式下工作
[player setOrientation:UIDeviceOrientationPortrait animated:NO];

您可以阅读我的博客文章,了解示例代码http://www.makebetterthings.com/blogs/iphone/play-video-on-iphone-and-ipad/