26 lines
712 B
Objective-C
Executable File
26 lines
712 B
Objective-C
Executable File
//
|
|
// MHChatTableView.m
|
|
// MoHuanXingYu
|
|
//
|
|
// Created by 马方圆 on 2021/5/18.
|
|
// Copyright © 2021 MoHuanXingYu. All rights reserved.
|
|
//
|
|
|
|
#import "MHChatTableView.h"
|
|
|
|
@implementation MHChatTableView
|
|
|
|
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
|
|
[[[[self nextResponder] nextResponder] nextResponder] touchesBegan:touches withEvent:event];
|
|
}
|
|
|
|
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
|
|
[[[[self nextResponder] nextResponder] nextResponder] touchesMoved:touches withEvent:event];
|
|
}
|
|
|
|
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
|
|
[[[[self nextResponder] nextResponder] nextResponder] touchesEnded:touches withEvent:event];
|
|
}
|
|
|
|
@end
|