Skip to content

Instantly share code, notes, and snippets.

@trilliwon
Created August 29, 2018 05:42
Show Gist options
  • Save trilliwon/691300174a6d014f430d96f846cd87b8 to your computer and use it in GitHub Desktop.
Save trilliwon/691300174a6d014f430d96f846cd87b8 to your computer and use it in GitHub Desktop.
iOS haptic feedback code
// class UINotificationFeedbackGenerator
let notificationFeedback = UINotificationFeedbackGenerator()
notificationFeedback.notificationOccurred(.success) // .warning, .error
// class UIImpactFeedbackGenerator
let impactFeedback = UIImpactFeedbackGenerator(style: .light) // .medium, .heavy
impactFeedback.impactOccurred()
// class UISelectionFeedbackGenerator
let selectionFeedback = UISelectionFeedbackGenerator()
selectionFeedback.selectionChanged()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment