Created
May 25, 2020 08:23
-
-
Save ryanisnhp/cfc129c9bd29cfed3ce5f4ae221e1172 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
| private let notificationFeedbackGenerator = UIImpactFeedbackGenerator(style: .light) | |
| //or | |
| private let notificationFeedbackGenerator = UIImpactFeedbackGenerator(style: .medium) | |
| //or | |
| private let notificationFeedbackGenerator = UIImpactFeedbackGenerator(style: .heavy) | |
| //or | |
| private let notificationFeedbackGenerator = UIImpactFeedbackGenerator(style: .rigid) | |
| //or | |
| private let notificationFeedbackGenerator = UIImpactFeedbackGenerator(style: .soft) | |
| notificationFeedbackGenerator.impactOccurred() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment