Prepare multiple UIFeedbackGenerators
To improve the response time of the haptic engine on iPhone7(plus), you have to call prepare on the UIFeedbackGeneratorinstance a few seconds before you actually want to perform the feedback. But what...
View ArticleUISelectionFeedbackGenerator() not working on iPhone 7
I would like to use some haptic in my app. I am using the UISelectionFeedbackGenerator but it will not work. I am testing on real iPhone 7 with iOS 10. These two lines should do the magic – but...
View ArticleHaptic feedback during animation - mimic UIPickerView
I created the circle with deck of cards, that user can spin to select one. After the paning ends, it snaps to designated angle with a nice deceleration animation. In future there will some kind of...
View ArticleCHHapticEngine not running
After a day of playing with the CHHapticEngine and custom haptic patterns, using AHAP files in particular (including adding sound samples), I have lost the sound and haptics in the deivce / iPhone....
View ArticleTrouble implementing custom haptics(with varying sharpness and intensity) on...
I recently came across Google Calendar iOS app, and it provides a crisp-yet-very-light haptic feedback when dragging or creating events. I'm trying to implement the same.I figured out that the...
View ArticleHow to make device vibrate more intense?
Now I have an extension to make the device vibrate from anywhere in the app:extension UIDevice { static func vibrate(style: UINotificationFeedbackGenerator.FeedbackType) { guard...
View ArticleNo haptic feedback when testing on a actual iPhone
I followed Apple's guide regarding implementing haptic features to my app. I tested on my iPhone but when I trigger the haptic action (tap a button on a tableView controller), nothing happens.Thie is...
View ArticleFlutter iPhone: Repeated haptic feedback vibrate
I want the phone to buzz repeatedly. The problem is that even though I make multiple calls to HapticFeedback.vibrate, the phone only buzzes once. I have made sure to do the subsequent calls in a .then...
View ArticleCHHapticEngine not generating haptic feedback nor throws error?
I am trying to generate haptic feedback in an iOS application. I am doing so by using CoreHaptics.My code to do this is as follows:do { let engine = try CHHapticEngine() try engine.start() let...
View Article