MPMusicPlayerController gives me the property nowPlayingItem, but i'm also interestend in the previous e next song.

Is there any way to retrive a MPMediaItem with the next and previous elements?

link|improve this question

70% accept rate
feedback

1 Answer

How are you setting the playback queue for your MPMusicPlayerController? You might be using an MPMediaQuery to find an MPMediaItemCollection, which you then set as the MPMusicPlayerController's queue.

If that's the case, you can take the MPMusicPlayerController's indexOfNowPlayingItem property in iOS 5+, add or subtract one, and select an MPMediaItem out of the items property of the MPMediaItemCollection that you found. (In iOS < 5, you can get the index of nowPlayingItem in the items array and use that in place of indexOfNowPlayingItem.)

The point is that you can't access the items in a player's queue, but if you keep the collection of items that you originally assigned to the queue, you can access the items in that collection.

link|improve this answer
I'm actually not setting a playback query since i'm use +[MPMusicPlayerController iPodMusicPlayer] to init the music player and I expect to use the current iPod queue – Luca Bernardi May 21 at 19:44
feedback

Your Answer

 
or
required, but never shown

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