views:

63

answers:

1

Please I know how to play a sound in AVAudioPlayer but I would like to know how to give it a list of on-disk files to play one after the other (play list)

Anyone has any idea?

A: 

You have to manage this by yourself, using the 'audioPlayerDidFinishPlaying' method to know when the current song is over, and when to start a new one.

Macmade
thanks a lot... is this method in AVAudioPlayerDelegate?
yes, it is a delegate method so you would just have to implement that delegate protocol.
iWasRobbed