// // 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 *)touches withEvent:(UIEvent *)event{ [[self nextResponder] touchesEnded:touches withEvent:event]; [super touchesEnded:touches withEvent:event]; } @end