Skip to content

Instantly share code, notes, and snippets.

@ryanisnhp
Created May 25, 2020 08:23
Show Gist options
  • Select an option

  • Save ryanisnhp/cfc129c9bd29cfed3ce5f4ae221e1172 to your computer and use it in GitHub Desktop.

Select an option

Save ryanisnhp/cfc129c9bd29cfed3ce5f4ae221e1172 to your computer and use it in GitHub Desktop.
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