I'm using the MPMusicPlayerController to play MPMediaItems in a MPMediaItemCollection. How can I fire an event when the MPMediaItems are done playing?

Thanks! interdev

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Register for MPMusicPlayerControllerPlaybackStateDidChangeNotification notifications:

[notificationCenter addObserver:self selector:@selector(handlePlaybackStateChanged:) name:MPMusicPlayerControllerPlaybackStateDidChangeNotification object:self.musicPlayer];

and tell your musicPlayerController to generate those notifications:

[self.musicPlayerController beginGeneratingPlaybackNotifications];

In handlePlaybackStateChanged: you can check the playbackState property of musicPlayerController:

- (void)handlePlaybackStateChanged:(NSNotitication*)notification
{
    if (self.musicPlayerController.playbackState == MPMusicPlaybackStateStopped || self.musicPlayerController.playbackState == MPMusicPlaybackStateInterrupted || self.musicPlayerController.playbackState == MPMusicPlaybackStatePaused) {
        // do your stuff
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.