就播放视频而言,我正在尝试找出我可以用 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];
}
如上所示,我确实得到了一个电影屏幕。我想知道是否可以在电影屏幕的顶部(“完成”上方)或底部(控制器下方)包含一个导航栏,以便在用户播放视频时添加一些操作?我想这个话题可能与我正在尝试做的事情有关。
谢谢您的帮助。