| 1234567891011121314151617181920212223 |
- //
- // YJYTouchScroll.m
- // YJYConsultant
- //
- // Created by lihaiyang on 2018/10/23.
- // Copyright © 2018 lihaiyang. All rights reserved.
- //
- #import "YJYTouchScroll.h"
- @implementation YJYTouchScroll
- - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
- [[self nextResponder] touchesBegan:touches withEvent:event];
- [super touchesBegan:touches withEvent:event];
- }
- - (void)touchesEnded:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
- [[self nextResponder] touchesEnded:touches withEvent:event];
- [super touchesEnded:touches withEvent:event];
-
- }
- @end
|