口袋优选

KBChildPageCollectionView.m 497B

1234567891011121314151617181920212223
  1. //
  2. // KBChildPageCollectionView.m
  3. // YouHuiProject
  4. //
  5. // Created by jcymac on 2018/6/7.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "KBChildPageCollectionView.h"
  9. @implementation KBChildPageCollectionView
  10. - (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
  11. [super touchesBegan:touches withEvent:event];
  12. }
  13. - (void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
  14. [super touchesMoved:touches withEvent:event];
  15. }
  16. @end