以下のコードを使用してムービーを再生していますが、ユーザーがボタンを押したときに、アプリに保存したこのムービー ファイルをデバイスのカメラ ロールに保存する方法があるかどうか疑問に思っていました。
NSString *moviePath = [[[NSBundle mainBundle] resourcePath]
stringByAppendingPathComponent:@"video.mp4"];
MPMoviePlayerController *moviePlayer = [[MPMoviePlayerController alloc]
initWithContentURL:[NSURL fileURLWithPath:moviePath]];
moviePlayer.movieControlMode = MPMovieControlModeDefault;
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(movieFinishedCallback:)
name:MPMoviePlayerPlaybackDidFinishNotification object:moviePlayer];
[moviePlayer play];