InTableScrollView.m 459 B

123456789101112131415161718192021222324252627
  1. //
  2. // InTableScrollView.m
  3. // westkissMob
  4. //
  5. // Created by iOS on 2024/3/12.
  6. //
  7. #import "InTableScrollView.h"
  8. @implementation InTableScrollView
  9. - (BOOL)canCancelContentTouches {
  10. return true;
  11. }
  12. - (BOOL)delaysContentTouches {
  13. return false;
  14. }
  15. - (BOOL)touchesShouldCancelInContentView:(UIView *)view {
  16. if ([view isKindOfClass:[UITableView class]]) {
  17. return false;
  18. }
  19. return [super touchesShouldCancelInContentView:view];
  20. }
  21. @end