我正在使用以下内容播放名为 intro 的视频
- (IBAction)PlayIntro:(id)sender {
NSString *videoPath = [[NSBundle mainBundle] pathForResource:@"intro" ofType:@"m4v"];
introplayer = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL fileURLWithPath:videoPath]];
[self presentMoviePlayerViewControllerAnimated:introplayer];
}
我在设置通知时遇到问题,以便在视频播放完毕后会发生以下[self performSegueWithIdentifier:@"IntroS" sender:sender];
任何帮助,我们将不胜感激。