I need to off my Sound using UISWitch . It is programmatically created UISwitch .
Here is method of playback sound .This method only i am calling for Sound play in UISwitch On mode .
I need to stop sound when i press Uiswitch is OFf mode . Please guide me to stop sound.
Code:
-(void) playback
{
NSString *path = [[NSBundle mainBundle] pathForResource:@"click" ofType:@"caf"];
if (path)
{
NSURL *url = [NSURL fileURLWithPath:path];
SystemSoundID soundID;
AudioServicesCreateSystemSoundID ((CFURLRef)url, &soundID);
AudioServicesPlaySystemSound(soundID);
}
}