I've keyboard like app and I'm adding each new AVAudioPlayer to NSMutableArray so I can overlay sounds. My problem is, that delagate function
-(void)audioPlayerDidFinishPlaying:(AVAudioPlayer *)player successfully:(BOOL)flag
is not fired if there are keystrokes in short interval. If I stroke for example in 0.5s or longer interval, everything works fine. Any idea why? I want to free memory and delete object from array when his sound play is finished.
UPDATE
.h
@interface .. <AVAudioPlayerDelegate>
{
NSMutableArray *soundObjects;
}
@property (nonatomic,strong) AVAudioPlayer *audioPlayer;
.m
-(void)playSound {
//
// play sound
//
_audioPlayer = [self loadWav:_soundID];
_audioPlayer.delegate = self;
[soundObjects addObject:_audioPlayer];
AVAudioPlayer *temp = [soundObjects objectAtIndex:soundIndex];
soundIndex = [soundObjects count];
[temp play];
}
-(void)audioPlayerDidFinishPlaying:(AVAudioPlayer *)player successfully:(BOOL)flag
{
#ifdef DEBUG_SOUND
NSLog(@"FLAG");
soundIndex--;
[soundObjects removeObjectAtIndex:soundIndex];
#endif
}
- (AVAudioPlayer *)loadWav:(NSString *)filename {
NSURL * url = [[NSBundle mainBundle] URLForResource:filename withExtension:@"mp3"];
NSError * error;
AVAudioPlayer * player = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];
if (!player) {
#ifdef DEBUG_MODE
NSLog(@"Error loading %@: %@", url, error.localizedDescription);
#endif
} else {
[player prepareToPlay];
}
return player;
}