Pretty simple, I'm using one button that generates a random number and then with a switch/case, it animates an image and plays a sound. My problem is that when you press the button again, the sound that was playing before doesn't stop and the sound overlaps.

Here's the code:

- (IBAction) pushme: (id) sender{
int random = (arc4random()%10);
switch (random) {
    case 0:  {
            [ANIMATION NUMBER 0]

            NSString *path = [NSString stringWithFormat:@"%@%@",[[NSBundle mainBundle] resourcePath],@"/sound0.wav"];
            SystemSoundID soundID;
            NSURL *filePath = [NSURL fileURLWithPath:path isDirectory:NO];
            AudioServicesCreateSystemSoundID((CFURLRef)filePath, &soundID);
            AudioServicesPlaySystemSound(soundID);
        }
        break;
    case 1:  {
            [ANIMATION NUMBER 1]

            NSString *path = [NSString stringWithFormat:@"%@%@",[[NSBundle mainBundle] resourcePath],@"/sound1.wav"];
            SystemSoundID soundID;
            NSURL *filePath = [NSURL fileURLWithPath:path isDirectory:NO];
            AudioServicesCreateSystemSoundID((CFURLRef)filePath, &soundID);
            AudioServicesPlaySystemSound(soundID);
    } break; //Lots more cases after this one

I know that this is not the best way to do it, declaring the same variable over and over. but is there a way to stop it before it plays another one?

link|improve this question
LOL i just discovered the answer to my own question. – Nicolas Apr 23 '11 at 17:17
That's great! Please post the answer here so others can benefit from your research. – Jacques Cousteau Apr 23 '11 at 17:20
added :) really simple – Nicolas Apr 23 '11 at 17:22
@Nicolas: sorry, I meant add it as an "Answer", below. This way the question does not appear in searches as unanswered. Thanks! – Jacques Cousteau Apr 23 '11 at 17:24
@JoshCaswell i cant because as a new user i cant answer it before 8 hours have passed. – Nicolas Apr 23 '11 at 17:26
show 3 more comments
feedback

1 Answer

up vote 3 down vote accepted

I just dicovered the answer to my own question.

What I did was

  1. Declare SoundSystemID soundID; in the header.
  2. Add this line before the random number gets generated: AudioServicesDisposeSystemSoundID(soundID);

Thank you guys, anyway.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.