Search code examples
iosiphoneavaudioplayer

repeat playing automatically


I use below code for play sound

NSURL* musicFile = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"01" ofType:@"mp3"]]; 
AVAudioPlayer *audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:musicFile error:nil];
[audioPlayer play];

I want to repeat this sound file automatically when it's finish How ?


Solution

  • audioPlayer.numberOfLoops = someNumber;
    

    or for "infinite" number of loops:

    audioPlayer.numberOfLoops = -1;