Skip to content

Instantly share code, notes, and snippets.

@ghvillasboas
Last active August 29, 2015 14:05
Show Gist options
  • Save ghvillasboas/241b556d0510a4e02ca7 to your computer and use it in GitHub Desktop.
Save ghvillasboas/241b556d0510a4e02ca7 to your computer and use it in GitHub Desktop.
iOS Audio Playback
// vibrate
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
// play short sound (< 30s)
SystemSoundID beep;
// Create the sound ID
NSString *path = [[NSBundle mainBundle] pathForResource:@"sound" ofType:@"caf"];
NSURL *url = [NSURL fileURLWithPath:path];
AudioServicesCreateSystemSoundID((__bridge CFURLRef)url, &beep);
// play it!
AudioServicesPlaySystemSound(beep);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment