MPMoviePlayerViewController问题-Iphone

时间:2011-06-27 04:59:37

标签: iphone ios mpmovieplayercontroller

我想为此实现电影播放器​​,我正在使用MPMoviePlayerViewController。

我的代码是,

moviePlayerController = [[MPMoviePlayerViewController alloc] initWithContentURL:videoURL]; 

moviePlayerController.moviePlayer.movieSourceType = MPMovieSourceTypeStreaming; 
[self presentModalViewController:moviePlayerController animated:YES]; 
[[moviePlayerController moviePlayer] play];

但它不断加载而不播放视频。我的代码出了什么问题。

我的要求是,

在电影播放器​​中,当我点击完成按钮时,它会转到我正在开始的页面。

感谢您的考虑和努力

修改

使用MPMoviePlayerController而不是使用MPMoviePlayerViewController的任何示例代码请给我。(请给我你实现的示例代码,因为我无法理解教程代码)请帮帮我

1 个答案:

答案 0 :(得分:1)

NSString *filepath = [[NSBundle mainBundle] pathForResource:@"aaa" ofType:@"mp4"];  
NSURL *fileURL = [NSURL fileURLWithPath:filepath];  
MPMoviePlayerController *moviePlayerController = [[MPMoviePlayerController alloc] initWithContentURL:fileURL]; 
[moviePlayerController.view setFrame:CGRectMake(0, 70, 320, 270)]; 
[self.view addSubview:moviePlayerController.view];  
moviePlayerController.fullscreen = YES;  
[moviePlayerController play];