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];