Skip to content

Repository files navigation

iOSSystemSoundsLibrary

  • List of all system sounds used in iOS
  • Run project on your iOS device to test all available system sounds
  • iOS Simulator does NOT play system sounds
  • Screenshot

##How to use in your project:

  • add AudioToolbox.framework to your project
  • import #import <AudioToolbox/AudioToolbox.h>

####Play sound using SystemSoundID

AudioServicesPlaySystemSound (1003); // SMSReceived (see SystemSoundID below)

####Play sound using file url

NSURL *fileURL = [NSURLURLWithString:@"/System/Library/Audio/UISounds/ReceivedMessage.caf"]; // see list below
SystemSoundID soundID;
AudioServicesCreateSystemSoundID((__bridge_retained CFURLRef)fileURL,&soundID);
AudioServicesPlaySystemSound(soundID);

List of SystemSoundIDs

SystemSoundIDFile nameCategory
1000new-mail.cafMailReceived
1001mail-sent.cafMailSent
1002Voicemail.cafVoicemailReceived
1003ReceivedMessage.cafSMSReceived
1004SentMessage.cafSMSSent
1005alarm.cafCalendarAlert
1006low_power.cafLowPower
1007sms-received1.cafSMSReceived_Alert
1008sms-received2.cafSMSReceived_Alert
1009sms-received3.cafSMSReceived_Alert
1010sms-received4.cafSMSReceived_Alert
1011-SMSReceived_Vibrate
1012sms-received1.cafSMSReceived_Alert
1013sms-received5.cafSMSReceived_Alert
1014sms-received6.cafSMSReceived_Alert
1015Voicemail.caf-
1016tweet_sent.cafSMSSent
1020Anticipate.cafSMSReceived_Alert
1021Bloom.cafSMSReceived_Alert
1022Calypso.cafSMSReceived_Alert
1023Choo_Choo.cafSMSReceived_Alert
1024Descent.cafSMSReceived_Alert
1025Fanfare.cafSMSReceived_Alert
1026Ladder.cafSMSReceived_Alert
1027Minuet.cafSMSReceived_Alert
1028News_Flash.cafSMSReceived_Alert
1029Noir.cafSMSReceived_Alert
1030Sherwood_Forest.cafSMSReceived_Alert
1031Spell.cafSMSReceived_Alert
1032Suspense.cafSMSReceived_Alert
1033Telegraph.cafSMSReceived_Alert
1034Tiptoes.cafSMSReceived_Alert
1035Typewriters.cafSMSReceived_Alert
1036Update.cafSMSReceived_Alert
1050ussd.cafUSSDAlert
1051SIMToolkitCallDropped.cafSIMToolkitTone
1052SIMToolkitGeneralBeep.cafSIMToolkitTone
1053SIMToolkitNegativeACK.cafSIMToolkitTone
1054SIMToolkitPositiveACK.cafSIMToolkitTone
1055SIMToolkitSMS.cafSIMToolkitTone
1057Tink.cafPINKeyPressed
1070ct-busy.cafAudioToneBusy
1071ct-congestion.cafAudioToneCongestion
1072ct-path-ack.cafAudioTonePathAcknowledge
1073ct-error.cafAudioToneError
1074ct-call-waiting.cafAudioToneCallWaiting
1075ct-keytone2.cafAudioToneKey2
1100lock.cafScreenLocked
1101unlock.cafScreenUnlocked
1102-FailedUnlock
1103Tink.cafKeyPressed
1104Tock.cafKeyPressed
1105Tock.cafKeyPressed
1106beep-beep.cafConnectedToPower
1107RingerChanged.cafRingerSwitchIndication
1108photoShutter.cafCameraShutter
1109shake.cafShakeToShuffle
1110jbl_begin.cafJBL_Begin
1111jbl_confirm.cafJBL_Confirm
1112jbl_cancel.cafJBL_Cancel
1113begin_record.cafBeginRecording
1114end_record.cafEndRecording
1115jbl_ambiguous.cafJBL_Ambiguous
1116jbl_no_match.cafJBL_NoMatch
1117begin_video_record.cafBeginVideoRecording
1118end_video_record.cafEndVideoRecording
1150vc~invitation-accepted.cafVCInvitationAccepted
1151vc~ringing.cafVCRinging
1152vc~ended.cafVCEnded
1153ct-call-waiting.cafVCCallWaiting
1154vc~ringing.cafVCCallUpgrade
1200dtmf-0.cafTouchTone
1201dtmf-1.cafTouchTone
1202dtmf-2.cafTouchTone
1203dtmf-3.cafTouchTone
1204dtmf-4.cafTouchTone
1205dtmf-5.cafTouchTone
1206dtmf-6.cafTouchTone
1207dtmf-7.cafTouchTone
1208dtmf-8.cafTouchTone
1209dtmf-9.cafTouchTone
1210dtmf-star.cafTouchTone
1211dtmf-pound.cafTouchTone
1254long_low_short_high.cafHeadset_StartCall
1255short_double_high.cafHeadset_Redial
1256short_low_high.cafHeadset_AnswerCall
1257short_double_low.cafHeadset_EndCall
1258short_double_low.cafHeadset_CallWaitingActions
1259middle_9_short_double_low.cafHeadset_TransitionEnd
1300Voicemail.cafSystemSoundPreview
1301ReceivedMessage.cafSystemSoundPreview
1302new-mail.cafSystemSoundPreview
1303mail-sent.cafSystemSoundPreview
1304alarm.cafSystemSoundPreview
1305lock.cafSystemSoundPreview
1306Tock.cafKeyPressClickPreview
1307sms-received1.cafSMSReceived_Selection
1308sms-received2.cafSMSReceived_Selection
1309sms-received3.cafSMSReceived_Selection
1310sms-received4.cafSMSReceived_Selection
1311-SMSReceived_Vibrate
1312sms-received1.cafSMSReceived_Selection
1313sms-received5.cafSMSReceived_Selection
1314sms-received6.cafSMSReceived_Selection
1315Voicemail.cafSystemSoundPreview
1320Anticipate.cafSMSReceived_Selection
1321Bloom.cafSMSReceived_Selection
1322Calypso.cafSMSReceived_Selection
1323Choo_Choo.cafSMSReceived_Selection
1324Descent.cafSMSReceived_Selection
1325Fanfare.cafSMSReceived_Selection
1326Ladder.cafSMSReceived_Selection
1327Minuet.cafSMSReceived_Selection
1328News_Flash.cafSMSReceived_Selection
1329Noir.cafSMSReceived_Selection
1330Sherwood_Forest.cafSMSReceived_Selection
1331Spell.cafSMSReceived_Selection
1332Suspense.cafSMSReceived_Selection
1333Telegraph.cafSMSReceived_Selection
1334Tiptoes.cafSMSReceived_Selection
1335Typewriters.cafSMSReceived_Selection
1336Update.cafSMSReceived_Selection
1350-RingerVibeChanged
1351-SilentVibeChanged
4095-Vibrate

List of all system audio files in iOS 7.0.2

/System/Library/Audio/UISounds/Modern/airdrop_invite.caf
/System/Library/Audio/UISounds/Modern/calendar_alert_chord.caf
/System/Library/Audio/UISounds/Modern/camera_shutter_burst.caf
/System/Library/Audio/UISounds/Modern/camera_shutter_burst_begin.caf
/System/Library/Audio/UISounds/Modern/camera_shutter_burst_end.caf
/System/Library/Audio/UISounds/Modern/sms_alert_aurora.caf
/System/Library/Audio/UISounds/Modern/sms_alert_bamboo.caf
/System/Library/Audio/UISounds/Modern/sms_alert_circles.caf
/System/Library/Audio/UISounds/Modern/sms_alert_complete.caf
/System/Library/Audio/UISounds/Modern/sms_alert_hello.caf
/System/Library/Audio/UISounds/Modern/sms_alert_input.caf
/System/Library/Audio/UISounds/Modern/sms_alert_keys.caf
/System/Library/Audio/UISounds/Modern/sms_alert_note.caf
/System/Library/Audio/UISounds/Modern/sms_alert_popcorn.caf
/System/Library/Audio/UISounds/Modern/sms_alert_synth.caf
/System/Library/Audio/UISounds/New/Anticipate.caf
/System/Library/Audio/UISounds/New/Bloom.caf
/System/Library/Audio/UISounds/New/Calypso.caf
/System/Library/Audio/UISounds/New/Choo_Choo.caf
/System/Library/Audio/UISounds/New/Descent.caf
/System/Library/Audio/UISounds/New/Fanfare.caf
/System/Library/Audio/UISounds/New/Ladder.caf
/System/Library/Audio/UISounds/New/Minuet.caf
/System/Library/Audio/UISounds/New/News_Flash.caf
/System/Library/Audio/UISounds/New/Noir.caf
/System/Library/Audio/UISounds/New/Sherwood_Forest.caf
/System/Library/Audio/UISounds/New/Spell.caf
/System/Library/Audio/UISounds/New/Suspense.caf
/System/Library/Audio/UISounds/New/Telegraph.caf
/System/Library/Audio/UISounds/New/Tiptoes.caf
/System/Library/Audio/UISounds/New/Typewriters.caf
/System/Library/Audio/UISounds/New/Update.caf
/System/Library/Audio/UISounds/ReceivedMessage.caf
/System/Library/Audio/UISounds/RingerChanged.caf
/System/Library/Audio/UISounds/SIMToolkitCallDropped.caf
/System/Library/Audio/UISounds/SIMToolkitGeneralBeep.caf
/System/Library/Audio/UISounds/SIMToolkitNegativeACK.caf
/System/Library/Audio/UISounds/SIMToolkitPositiveACK.caf
/System/Library/Audio/UISounds/SIMToolkitSMS.caf
/System/Library/Audio/UISounds/SentMessage.caf
/System/Library/Audio/UISounds/Swish.caf
/System/Library/Audio/UISounds/Tink.caf
/System/Library/Audio/UISounds/Tock.caf
/System/Library/Audio/UISounds/Voicemail.caf
/System/Library/Audio/UISounds/alarm.caf
/System/Library/Audio/UISounds/beep-beep.caf
/System/Library/Audio/UISounds/begin_record.caf
/System/Library/Audio/UISounds/begin_video_record.caf
/System/Library/Audio/UISounds/ct-busy.caf
/System/Library/Audio/UISounds/ct-call-waiting.caf
/System/Library/Audio/UISounds/ct-congestion.caf
/System/Library/Audio/UISounds/ct-error.caf
/System/Library/Audio/UISounds/ct-keytone2.caf
/System/Library/Audio/UISounds/ct-path-ack.caf
/System/Library/Audio/UISounds/dtmf-0.caf
/System/Library/Audio/UISounds/dtmf-1.caf
/System/Library/Audio/UISounds/dtmf-2.caf
/System/Library/Audio/UISounds/dtmf-3.caf
/System/Library/Audio/UISounds/dtmf-4.caf
/System/Library/Audio/UISounds/dtmf-5.caf
/System/Library/Audio/UISounds/dtmf-6.caf
/System/Library/Audio/UISounds/dtmf-7.caf
/System/Library/Audio/UISounds/dtmf-8.caf
/System/Library/Audio/UISounds/dtmf-9.caf
/System/Library/Audio/UISounds/dtmf-pound.caf
/System/Library/Audio/UISounds/dtmf-star.caf
/System/Library/Audio/UISounds/end_record.caf
/System/Library/Audio/UISounds/end_video_record.caf
/System/Library/Audio/UISounds/jbl_ambiguous.caf
/System/Library/Audio/UISounds/jbl_begin.caf
/System/Library/Audio/UISounds/jbl_cancel.caf
/System/Library/Audio/UISounds/jbl_confirm.caf
/System/Library/Audio/UISounds/jbl_no_match.caf
/System/Library/Audio/UISounds/lock.caf
/System/Library/Audio/UISounds/long_low_short_high.caf
/System/Library/Audio/UISounds/low_power.caf
/System/Library/Audio/UISounds/mail-sent.caf
/System/Library/Audio/UISounds/middle_9_short_double_low.caf
/System/Library/Audio/UISounds/new-mail.caf
/System/Library/Audio/UISounds/photoShutter.caf
/System/Library/Audio/UISounds/shake.caf
/System/Library/Audio/UISounds/short_double_high.caf
/System/Library/Audio/UISounds/short_double_low.caf
/System/Library/Audio/UISounds/short_low_high.caf
/System/Library/Audio/UISounds/sms-received1.caf
/System/Library/Audio/UISounds/sms-received2.caf
/System/Library/Audio/UISounds/sms-received3.caf
/System/Library/Audio/UISounds/sms-received4.caf
/System/Library/Audio/UISounds/sms-received5.caf
/System/Library/Audio/UISounds/sms-received6.caf
/System/Library/Audio/UISounds/sq_alarm.caf
/System/Library/Audio/UISounds/sq_beep-beep.caf
/System/Library/Audio/UISounds/sq_lock.caf
/System/Library/Audio/UISounds/sq_tock.caf
/System/Library/Audio/UISounds/tweet_sent.caf
/System/Library/Audio/UISounds/unlock.caf
/System/Library/Audio/UISounds/ussd.caf
/System/Library/Audio/UISounds/vc~ended.caf
/System/Library/Audio/UISounds/vc~invitation-accepted.caf
/System/Library/Audio/UISounds/vc~ringing.caf

Screenshot

screenshot

About

List of all system sounds used in iOS

Resources

Stars

1.3k stars

Watchers

51 watching

Forks

Releases

Packages

Contributors

Languages