123456789101112131415161718192021222324252627 |
- //
- // InTableScrollView.m
- // westkissMob
- //
- // Created by iOS on 2024/3/12.
- //
- #import "InTableScrollView.h"
- @implementation InTableScrollView
- - (BOOL)canCancelContentTouches {
- return true;
- }
- - (BOOL)delaysContentTouches {
- return false;
- }
- - (BOOL)touchesShouldCancelInContentView:(UIView *)view {
- if ([view isKindOfClass:[UITableView class]]) {
- return false;
- }
- return [super touchesShouldCancelInContentView:view];
- }
- @end
|