Created
August 10, 2020 12:02
-
-
Save foxicode/1b343e9691e6cd8806ae3169f2ccbc4e to your computer and use it in GitHub Desktop.
Making vibration effect
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 UIKit | |
| import AudioToolbox | |
| extension UIDevice { | |
| static func vibrate() { | |
| AudioServicesPlaySystemSound(1519) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment