1234567891011121314151617181920212223 |
- //
- // KBChildPageCollectionView.m
- // YouHuiProject
- //
- // Created by jcymac on 2018/6/7.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "KBChildPageCollectionView.h"
- @implementation KBChildPageCollectionView
- - (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
- [super touchesBegan:touches withEvent:event];
- }
- - (void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
- [super touchesMoved:touches withEvent:event];
- }
- @end
|