Reputation:
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 ?
Upvotes: 8
Views: 4929
Reputation: 170849
audioPlayer.numberOfLoops = someNumber;
or for "infinite" number of loops:
audioPlayer.numberOfLoops = -1;
Upvotes: 18