我已经开发了一个运行MPMoviePlayer(3.2之前的SDK)的iPhone应用程序,没有任何问题.我知道这是一个新手问题,但我如何在新的MPMoviePlayerViewController中播放电影.我只是获得音频并希望学习新的视图控制器.我把我的整个应用程序移植到了iPad上,除了视频外,其他一切都运行正常.有人可以使用电影视图控制器显示示例吗?任何帮助,将不胜感激.
谢谢,
NSURL* videoURL = [NSURL URLWithString:url]; MPMoviePlayerController moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:videoURL]; [moviePlayer prepareToPlay]; [moviePlayer play]; //For viewing partially..... [moviePlayer.view setFrame:CGRectMake(50, 200, (self.view.frame.size.width)-100 , 400)]; moviePlayer.view.backgroundColor = [UIColor grayColor]; [self.view addSubview:moviePlayer.view];