I am new to XCode so this may be a very simple question, but I can't seem to figure this out. My goal is to build a simple soundboard app that plays sounds whenever the user touches a button. I am using the "AudioToolbox.framework" and my code is as follows:

.h file:

-(IBAction)sound1;

.m file:

-(IBAction)sound1 {
CFBundleRef mainBundle = CFBundleGetMainBundle();
CFURLRef soundFileURLRef;
soundFileURLRef = CFBundleCopyResourceURL(mainBundle, (CFStringRef) @"sound1", CFSTR     ("wav"), NULL);

UInt32 soundID;
AudioServicesCreateSystemSoundID(soundFileURLRef, &soundID);
AudioServicesPlaySystemSound(soundID);

}

The sound does play with each touch, but there is an awful echo. How would I go about resetting the audio file each time the same button is pressed?

As an aside, I am also experiencing a strange delay before the sound begins to play (about 2 seconds) each time the button is pressed for the first time. After the sound is played once, there is no delay. Can anyone help me kill two birds with one stone here?

Thanks

link|improve this question

57% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.