我正在使用MPMoviePlayerViewController。当视频加载并开始播放时,它不会填满整个屏幕。我必须按右上角的全屏按钮才能实现。如果我使用MPMoviePlayerController,我根本无法填充它。
通过代码,我可以使用MPMoviePlayerViewController全屏显示我的视频而无需按全屏按钮吗?
我知道我在这里使用私有API,但没关系,这是一个演示。
代码:
- (void)viewDidLoad
{
[super viewDidLoad];
[[UIDevice currentDevice] setOrientation:UIDeviceOrientationPortrait];
NSString *moviePath = [[NSBundle mainBundle] pathForResource:@"phatpad" ofType:@"mov"];
if (moviePath)
{
NSURL *url = [NSURL fileURLWithPath:moviePath];
player = [[MPMoviePlayerViewController alloc]initWithContentURL:url];
}
player.view.frame = self.view.frame;
[self.view addSubview: player.view];
}
这是一个屏幕。第一种是没有按下全屏按钮,第二种是在按下之后。
答案 0 :(得分:14)
您必须将fullscreen属性设置为true,并将scallingMode设置为aspect填充如下:
if (moviePath)
{
NSURL *url = [NSURL fileURLWithPath:moviePath];
player = [[MPMoviePlayerViewController alloc]initWithContentURL:url];
player.moviePlayer.fullscreen = YES;
player.moviePlayer.scalingMode = MPMovieScalingModeAspectFill;
}
我已经在家测试了它的确有效,所以我也希望你能。
答案 1 :(得分:0)
在iPhone和iPod Touch上,无论如何,MPMoviePlayerController都会全屏播放,所以我假设你在谈论iPad?我们可以看一些代码示例吗?我只需通过调整XIB文件中的UIView就可以全屏显示。你是怎么想的呢?