Created
December 7, 2017 00:04
-
-
Save mackhowell/3dac06c0a4d9149ff5d73bf4e8534da8 to your computer and use it in GitHub Desktop.
home button "pop" forever
This file contains 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 | |
func vibrateForever() { | |
let k_PeakSoundID: UInt32 = 1519 | |
while true { | |
AudioServicesPlaySystemSound(k_PeakSoundID) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment