// // MONoHitView.m // MiMoLive // // Created by SuperC on 2024/3/22. // #import "MONoHitView.h" @implementation MONoHitView #pragma mark - Hit - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event{ UIView *hitView = [super hitTest:point withEvent:event]; if(hitView == self){ return nil; } return hitView; } @end