11

This is just a question that came off of the top of my head, but does anyone know if there are more sounds built into the system besides the (0x450) click sound? I would assume that there are others that can be put into apps since there are a lot more than just one built into the iPhone.

Daniel Nugent
  • 43,104
  • 15
  • 109
  • 137
cory ginsberg
  • 2,907
  • 6
  • 25
  • 37
  • See https://github.com/klaas/SwiftySystemSounds a sample app that lets you play all available ones on an iOS device. – Klaas Jul 12 '17 at 14:09

2 Answers2

20

There is a list posted to AudioServices - iPhone Development Wiki. I've not yet figured out if using this in the following way is grounds for rejection:

AudioServicesPlaySystemSound(1103);

Don't forget to include:

#import <AudioToolbox/AudioToolbox.h>
DenVog
  • 4,226
  • 3
  • 43
  • 72
2

Check all system sounds with: iOSSystemSoundsLibrary

TUNER88
  • 923
  • 1
  • 20
  • 36