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?
| ||||
|
show 3 more comments
feedback
|
|
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. | |||
|
feedback
|
-isEqual:not sufficient? – Jonathan Grynspan Aug 8 '11 at 15:44-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