Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i want to play songs in background without click for next song , songs will change in background and play next song in background .i search this link for play song in background : http://mobile.tutsplus.com/tutorials/iphone/ios-sdk_background-audio/

but from this link only we play one song in background . but i required play multiple songs in background like as music player .

is there any way to play multiple songs in background please suggest me

thanks in advance.

share|improve this question

1 Answer

If you want to know when the song has finished to play you should use AVAudioPlayer Delegate!

When the song finishes to play you can change to the next song in method:

- (void)audioPlayerDidFinishPlaying:(AVAudioPlayer *)player successfully:(BOOL)flag

In this method you should remove your current player and init new player with new song.

share|improve this answer
thanks iwheelBuy i am checking this delegate. – jaydev singh Nov 19 '12 at 6:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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