UIScrollView+JXUITouch.m 792 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // UIScrollView+JXUITouch.m
  3. // shiku_im
  4. //
  5. // Created by os on 2020/7/8.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import "UIScrollView+JXUITouch.h"
  9. @implementation UIScrollView (JXUITouch)
  10. - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
  11. [[self nextResponder] touchesBegan:touches withEvent:event];
  12. //[super touchesBegan:touches withEvent:event];
  13. }
  14. -(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
  15. [[self nextResponder] touchesMoved:touches withEvent:event];
  16. //[super touchesMoved:touches withEvent:event];
  17. }
  18. - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
  19. [[self nextResponder] touchesEnded:touches withEvent:event];
  20. //[super touchesEnded:touches withEvent:event];
  21. }
  22. @end