I am making an app in which the user can select his or her own iPod songs using MPMediaPickerController.

Right now I have it so that the user can select a single song and that data is saved and persisted for every time the app is used.

But... I want a UILabel to be able to show the song title of the MPMediaItemCollection object (the song selected by the user)?

I'm not sure how to go about doing this....

If I NSLog the selection in MPMediaItemCollection object I get an output such as: .

Can I convert this into a song title, or grab that data using some other method? Or have I completely the wrong idea....

Thanks....

EDIT - FOUND SOLUTION:

MPMediaItem *representativeItem = [mediaItemCollection representativeItem];//mediaItemCollection is MPMediaItemCollectionObject
    NSString *albumName = [representativeItem valueForProperty: MPMediaItemPropertyAlbumTitle];
link|improve this question

69% accept rate
You get output such as.... ?? (blank? a period? the number 42?) You may want to edit your question and clarify what your NSLog output is showing. – Michael Dautermann Nov 28 '11 at 16:18
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.