AJScrollView.m 279 B

12345678910111213141516
  1. //
  2. // AJScrollView.m
  3. // AJPushDemo
  4. //
  5. // Created by 李家斌 on 2021/3/19.
  6. //
  7. #import "AJScrollView.h"
  8. @implementation AJScrollView
  9. - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
  10. [[self nextResponder] touchesBegan:touches withEvent:event];
  11. }
  12. @end