I am writing a music playlist editing application for the iPhone.

I am subscribing to the MPMusicPlayerController MPMusicPlayerControllerNowPlayingItemDidChangeNotificationand I am getting a problem where the @selector method for this notification is being called more than once when the nowPlayingItem: changes.

I have divided up each playlist into their own MPMediaItemCollection objets, and when one playlist is finished I load the next one, by calling -pause on the player, passing a new MPMediaItemCollectionto the music player controller via its -setQueueWithItemCollection: method. I then explicitly set the nowPlayingItem to an item of item of my own and finally I call -play.

        [musicPlayer pause];
        [musicPlayer setQueueWithItemCollection:[MPMediaItemCollection collectionWithItems:[selectedPrefs mediaItems]]];
        musicPlayer.nowPlayingItem = [selectedPrefs.playbackItems objectAtIndex:selectedPrefs.nowPlayingIndex];
        [musicPlayer play];

When I do this the @selector is called twice for the now playing item changing. I suspect this is because -setQueueWithItemCollection:automatically changes the now playing item to point to the first media item in the new collection, and then I am changing this item again before calling -play.

Many thanks.

link|improve this question

I've noticed something similar, but haven't had time to look into it yet. Curious what you'll find. – alex_c Aug 11 '11 at 19:26
Yeah I have still not been able to get to the bottom of this, it is highly frustrating. Will let you know my findings if I have any. Cheers. – Sabobin Aug 12 '11 at 8:34
It's been this way for years. I've filed a bug. Feel free to do the same! – matt Nov 26 '11 at 1:26
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.