- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
CGPoint newP = [self convertPoint:point toView:self.statuTF];
if ( [self.statuTF pointInside:newP withEvent:event]) {
return self;
}
return [super hitTest:point withEvent:event];
}