| 123456789101112131415161718192021222324 |
- //
- // YJYTouchCollectionView.m
- // YJYConsultant
- //
- // Created by lihaiyang on 2018/10/23.
- // Copyright © 2018 lihaiyang. All rights reserved.
- //
- #import "YJYTouchCollectionView.h"
- @implementation YJYTouchCollectionView
- - (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
|