iPhone视频从垂直到水平时显示在右下角



当我的应用运行时,视频和手机被评为横向模式,然后我的视频在右下角播放,有没有办法让用户旋转视频时视频位于屏幕中间?

我不确定您如何运行视频,但请尝试这样做(导入 MediaPlayer/MediaPlayer.h 后):

NSBundle *bundle = [NSBundle mainBundle];
NSString *moviePath = [bundle pathForResource:@"ExampleVideo" ofType:@"m4v"];
NSURL *movieURL = [NSURL fileURLWithPath:moviePath];
MPMoviePlayerController *testMovie = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];
testMovie.scalingMode = MPMovieScalingModeAspectFit;
[testMovie play];
MPMoviePlayerViewController *moviePlayer = [[MPMoviePlayerViewController alloc] initWithContentURL:movieURL];
[self presentMoviePlayerViewControllerAnimated:moviePlayer];

当我播放电影时,我称之为,它与旋转配合良好。

最新更新