Can any one suggest me how to play the music using MPMusicPlayerController in my application.

Anyone's help will be very much appreciated.

Thank you, Monish.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Create a MPMediaPickerController so you can choose some music from the iPod, then in the mediaPicker:didPickMediaItems: call back you do this:

MPMusicPlayerController* playa;
playa = [MPMusicPlayerController applicationMusicPlayer];
[playa setQueueWithItemCollection:mediaItemCollection];
[playa play];
link|improve this answer
thank you for you answear, but how can I create a mediaItemCollection from files or urls on the local app? – Panagiotis Korros Mar 11 '10 at 9:41
1  
I can't see any way to do it. You probably can't. If you don't want audio from the iPod library, you should use AVAudioPlayer. The iPhone music APIs are not very orthogonal. – Rhythmic Fistman Mar 12 '10 at 12:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.