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 回答