ビデオの再生に関する限り、iPad で何ができるかを調べようとしています。そして、UIButton アクションの次のコードがあります。
- (IBAction)playClick:(id)sender {
NSBundle *bundle = [NSBundle mainBundle];
NSString *moviePath = [bundle pathForResource:@"video3" ofType:@"m4v"];
NSURL *movieURL = [NSURL fileURLWithPath:moviePath];
MPMoviePlayerController *theMovie = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];
theMovie.scalingMode = MPMovieScalingModeAspectFill;
[theMovie play];
MPMoviePlayerViewController *moviePlayer = [[MPMoviePlayerViewController alloc] initWithContentURL:movieURL];
[self presentMoviePlayerViewControllerAnimated:moviePlayer];
}
上記のように、映画の画面が表示されます。ユーザーがビデオを再生している間にいくつかのアクションを追加できるように、ムービー画面の上部 (「完了」の上) または下部 (コントローラーの下) にナビゲーション バーを含めることは可能でしょうか? このトピックは、私がやろうとしていることに関するものかもしれません。
ご協力ありがとうございました。