0

ビデオの再生に関する限り、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];
}

ビデオ

上記のように、映画の画面が表示されます。ユーザーがビデオを再生している間にいくつかのアクションを追加できるように、ムービー画面の上部 (「完了」の上) または下部 (コントローラーの下) にナビゲーション バーを含めることは可能でしょうか? このトピックは、私がやろうとしていることに関するものかもしれません。

ご協力ありがとうございました。

4

1 に答える 1

0

を使用して、さらにボタンを追加できます。

UIBarButtonItem *button = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(yourButtonAction:)]; 
moviePlayer.navigationItem.rightBarButtonItem = button; 

必要に応じてこれらのボタンをカスタマイズします。

これを試してみてください。

よろしく

于 2013-01-20T10:35:08.663 に答える