When i play one sound then click on another it plays both of them over eachother. Is there any way to stop all sounds playing and to make it only play the most recent sound. Heres the code:

@implementation FirstViewController




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

UInt32 soundID;
AudioServicesCreateSystemSoundID(soundFileUrlRef, &soundID);
AudioServicesPlaySystemSound(soundID);
}


-(IBAction) sound2 {
CFBundleRef mainBundle = CFBundleGetMainBundle();
CFURLRef soundFileUrlRef;
soundFileUrlRef = CFBundleCopyResourceURL (mainBundle, (CFStringRef) @"bomb2",     CFSTR("wav"), NULL);

UInt32 soundID;
AudioServicesCreateSystemSoundID(soundFileUrlRef, &soundID);
AudioServicesPlaySystemSound(soundID);
}

What piece of code do i have to enter and where do i put it? I am just starting to learn how to implement audio into a iphone app so if you can please make it noob friendly i would appreciate it a lot.

Thanks!

link|improve this question
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.