23 lines
469 B
Objective-C
23 lines
469 B
Objective-C
//
|
|
// XPMineUserTableView.m
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/9/27.
|
|
//
|
|
|
|
#import "XPMineUserTableView.h"
|
|
#import "XPMacro.h"
|
|
#import "XPMineUserInfoViewController.h"
|
|
|
|
@implementation XPMineUserTableView
|
|
|
|
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
|
|
if (point.y > (250 + kSafeAreaTopHeight)) {
|
|
return self;
|
|
} else {
|
|
return [[(XPMineUserInfoViewController *)self.userInfoVC getHeadHitView] hitTest:point withEvent:event];
|
|
}
|
|
}
|
|
|
|
@end
|