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