AVAudioPlayer playing same sound overlapping Programming Software Development by digan …the view it adds another of the sounds to the avaudioplayer but never gets rid of the old one. I …ofType:@"wav"]; NSURL *soundFileURL = [NSURL fileURLWithPath:soundFilePath]; player = [[AVAudioPlayer alloc] initWithContentsOfURL:soundFileURL error:nil]; player.numberOfLoops = -1; //infinite [player… Re: AVAudioPlayer playing same sound overlapping Programming Software Development by ChrisPadgham I think you need [player stop] in somewhere like viewWillDisappear