ShiCaotableView.m 390 B

12345678910111213141516171819
  1. //
  2. // ShiCaoUItableView.m
  3. // jiaPei
  4. //
  5. // Created by EchoShacolee on 2017/3/22.
  6. // Copyright © 2017年 JCZ. All rights reserved.
  7. //
  8. //处理tableview空白处的点击事件
  9. #import "ShiCaotableView.h"
  10. @implementation ShiCaotableView
  11. -(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
  12. [self.nextResponder touchesBegan:touches withEvent:event];
  13. }
  14. @end