I am using an MPMediaItemCollection to hold a number of user selected music tracks from the iPod music library. I want to be able to uniquely identify each MPMediaItem within the collection even if they are duplicated. Is this possible?

link|improve this question

Is -isEqual: not sufficient? – Jonathan Grynspan Aug 8 '11 at 15:44
No. If the music players nowPlayingItem has duplicates in the media collection, if I check the nowPlayingItems index with NSArrays indexForObject: method, the mediaItem with the lowest index value is always returned. This means if the now playing item is one of the duplicates further up in the array it is not returning the correct object. I think indexForObject is using the isEqual: method to scan through the array until it returns true. – Sabobin Aug 8 '11 at 16:29
Yes, but that's always how it will work. That's the purpose of -indexOfObject:. If you want to find any duplicates, you cannot use -indexOfObject: because it will always give you the first index. – Jonathan Grynspan Aug 8 '11 at 16:33
Yeah exactly, thats why I need a way of uniquely IDing each mediaItem in the array so that I can be sure the right index is being returned for the music players nowPlayingItem – Sabobin Aug 8 '11 at 16:35
That doesn't make sense. If the item is in the list twice, it's the same item twice. – Jonathan Grynspan Aug 8 '11 at 16:36
show 3 more comments
feedback

1 Answer

up vote 0 down vote accepted

I've had the same problem as you, and Apple has just provided me the solution in iOS v5.0. There is an indexOfNowPlayingItem property in the MPMusicPlayerController class. You can use that to index into your array. This is of course if you are using MPMusicPlayerController.

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.