Advertisement
iOSthemem0d

Haptic feedback

Feb 25th, 2020
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. UIImpactFeedbackGenerator *gen;
  2.  
  3.  
  4. %hook UITabBarButton
  5.  
  6. - (void)touchesBegan:(id)arg1 withEvent:(id)arg2 {
  7.  
  8. %orig;
  9.  
  10. if (enableHaptic) {
  11.  
  12. UIImpactFeedbackGenerator *gen = [[UIImpactFeedbackGenerator alloc] initWithStyle:UIImpactFeedbackStyleLight
  13.  
  14. [gen impactOccurred];
  15.  
  16. }
  17. }
  18.  
  19. %end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement