↧
Answer by efremidze for Creating a haptic feedback pattern in swift 3
You can create an OperationQueue and add operations with haptic feedback. The operation would look like this: class HapticFeedbackOperation: Operation { override func main() { // Play the haptic...
View ArticleAnswer by Sapozhnik Ivan for Creating a haptic feedback pattern in swift 3
Recently I was doing something similar and come up with a small pod you can take a look. Here is the link https://github.com/iSapozhnik/Haptico So the idea is to build an OperationQueue with the banch...
View ArticleCreating a haptic feedback pattern in swift 3
I am very new to Swift and programming. I'm trying to create a pattern of haptic feedback triggered by a UILongPressGestureRecognizer. When the user "long presses" the screen, I want the phone to...
View Article