我正在使用MPMoviePlayerController
在我的iPhone应用中播放视频。
当MPMoviePlayerController
正在播放时,按iPhone上的主页按钮,让应用程序进入后台。
然后点击应用程序的图标使应用程序进入前景,MPMoviePlayerController
的视图将短时间黑屏,大约1到15秒。
如何在应用程序到达前台时立即显示MPMoviePlayerController
的视频?
特别的thx! :d
答案 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];
我希望这会对你有所帮助。