What are the system sounds for AudioServicesPlaySystemSound?

This is just a question that got off my head, but does anyone know if there are more sounds in the system besides the click sound (0x450)? I would suggest that there are others that can be added to applications, since the iPhone has much more than one built-in.

+7
source share
2 answers

There is a list posted to AudioServices - iPhone Development Wiki . I still do not understand if I am using it as follows, these are the grounds for refusal:

AudioServicesPlaySystemSound(1103); 

Do not forget to include:

 #import <AudioToolbox/AudioToolbox.h> 
+15
source

Check all system sounds using iOSSystemSoundsLibrary

+2
source

All Articles