8

我的 iPad 应用程序上有一个 MPMoviePlayerController,当它的框架是常规的(不是全屏)时效果很好。

当我点击全屏按钮时,播放器会全屏播放,但电影会停止。我总是看到标题“正在加载...”,黑色背景,标准控件(返回、播放和下一步)被禁用。

我为播放器声明了一个实例变量:

MPMoviePlayerController *player;

在我的实现中:

MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:videoUrl];

player.shouldAutoplay = NO;
player.movieSourceType = MPMovieSourceTypeFile;
player.controlStyle = MPMovieControlStyleEmbedded;
player.allowsAirPlay = YES;

player.view.frame = CGRectMake(xPos, yPos, width, height);

[self.view addSubview:player.view];

[player prepareToPlay];

你有什么主意吗?我正在使用 iOS 6 SDK,我正在 iPad 6.0 模拟器和带有 iOS 6 beta(最新)的真正 iPad2 上测试该应用程序。

4

1 回答 1

27

我的天啊!!!

我写...

[player stop];

在视图中将消失!!!我怎么可以这么傻?!今晚没有蛋糕...

于 2012-09-21T16:04:13.287 回答