1234567891011121314151617181920212223242526 |
- //
- // RQTableView.m
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/23.
- // Copyright © 2018 张嵘. All rights reserved.
- //
- #import "RQTableView.h"
- @implementation RQTableView
- - (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
-
- /// 处理popView
- [RQMomentHelper hideAllPopViewWithAnimated:YES];
-
- /// 全局
- [super touchesBegan:touches withEvent:event];
- }
- - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event{
- UIView * hitView = [super hitTest:point withEvent:event];
- return hitView;
- }
- @end
|