AVAudioPlayer, sem som

Eu importei ferramentas de áudio e avfoundation para minha classe e adicionei os frameworks ao meu projeto e estou usando este código para reproduzir um som:

- (void)playSound:(NSString *)name withExtension:(NSString *)extension
{
    NSURL* soundUrl = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:name ofType:extension]]; 
    AVAudioPlayer *audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:soundUrl error:nil];
    audioPlayer.delegate = self;
    audioPlayer.volume = 1.0;
    [audioPlayer play];
}

Eu chamo assim:

[self playSound:@"wrong" withExtension:@"wav"];

Som zero. Qualquer ajuda é muito apreciada, obrigado.

questionAnswers(4)

yourAnswerToTheQuestion