当app从后台输入前景时,MPMoviePlayerController黑屏

时间:2013-05-21 09:26:20

标签: iphone ios objective-c mpmovieplayercontroller

我正在使用MPMoviePlayerController在我的iPhone应用中播放视频。

MPMoviePlayerController正在播放时,按iPhone上的主页按钮,让应用程序进入后台。

然后点击应用程序的图标使应用程序进入前景,MPMoviePlayerController的视图将短时间黑屏,大约1到15秒。

如何在应用程序到达前台时立即显示MPMoviePlayerController的视频?

特别的thx! :d

1 个答案:

答案 0 :(得分:-2)

NSURL * movieURL = [NSURL URLWithString:@“http:// ......”];

// Initialize a movie player object with the specified URL

self.moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];

self.moviePlayer.controlStyle = MPMovieControlStyleFullscreen;

[self.moviePlayer.view setFrame:self.view.bounds];

[self.view addSubview:self.moviePlayer.view];

[self.moviePlayer play];

我希望这会对你有所帮助。