对于我正在使用的应用程序MPMoviePlayerController
。问题是我应该如何检测下一个和上一个按钮事件。因为在MPMoviePlayerController
我们可以检测到各种事件,但我找不到任何方法来检测下一个和上一个按钮事件。我用于检测其他事件的代码是
- (void)moviePlayerPlaybackStateChanged:(NSNotification *)notification {
MPMoviePlayerController *moviePlayer = notification.object;
MPMoviePlaybackState playbackState = moviePlayer.playbackState;
switch (playbackState) {
case MPMoviePlaybackStateStopped:
NSLog(@"stop");
break;
case MPMoviePlaybackStatePlaying:
NSLog(@"playing");
break;
case MPMoviePlaybackStatePaused:
NSLog(@"paused");
break;
case MPMoviePlaybackStateInterrupted:
NSLog(@"Interrupted");
break;
case MPMoviePlaybackStateSeekingForward:
NSLog(@"forward");
break;
case MPMoviePlaybackStateSeekingBackward:
NSLog(@"backword");
break;
default:
break;
}
}
我需要这个,因为我想在播放列表中播放上一首和下一首曲目。