Created
July 10, 2018 07:44
-
-
Save brandonasuncion/756bbf900440fa40654591b3b64b62ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import AudioToolbox.AudioServices | |
| extension SystemSoundID { | |
| static let vibrate = SystemSoundID(kSystemSoundID_Vibrate) // 4095 | |
| static let peek = SystemSoundID(1519) | |
| static let pop = SystemSoundID(1520) | |
| static let cancelled = SystemSoundID(1521) | |
| static let tryAgain = SystemSoundID(1102) | |
| static let failed = SystemSoundID(1107) | |
| } | |
| AudioServicesPlaySystemSound(.peek) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment