Created
June 24, 2026 10:41
-
-
Save jacobsapps/a18cd204d8d27fac6b0df053676a42dc to your computer and use it in GitHub Desktop.
Haptics from My top 3 design “Kisses” I like to add to every app
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
| let event = CHHapticEvent( | |
| eventType: .hapticContinuous, | |
| parameters: [ | |
| CHHapticEventParameter(parameterID: .hapticIntensity, value: 1.0), | |
| CHHapticEventParameter(parameterID: .hapticSharpness, value: 1.0), | |
| ], | |
| relativeTime: 0, | |
| duration: 60 | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment