我如何从一个名为“地图集”的电影中拍摄一部电影? 我不想利用UIImagePickerController来浏览电影,但我希望能够具体说明电影的名称(或某种影子),就像在以下法典中那样。 以下法典在当地播放录像。 我如何改变在照片上储存的名为“Video”的小册子上播放录像的道路? 非常感谢你的帮助。
NSString *url = [[NSBundle mainBundle]
pathForResource:@"Movie1"
ofType:@"MOV"];
MPMoviePlayerViewController *playerViewController =
[[MPMoviePlayerViewController alloc]
initWithContentURL:[NSURL fileURLWithPath:url]];
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(movieFinishedCallback:)
name:MPMoviePlayerPlaybackDidFinishNotification
object:[playerViewController moviePlayer]];
[playerViewController.view setFrame: self.view.bounds];
[self.view addSubview:playerViewController.view];
MPMoviePlayerController *player = [playerViewController moviePlayer];
[player play];
[playerViewController release];