-(void)touchesBegan:(NSSet*)touches withEvent:(UIEvent *)event
{
[super touchesBegan:touches withEvent:event];
CGPoint point = [[touches anyObject] locationInView:_label];
if ([_label pointInside:point withEvent:event]) {
NSLog(@"%f",point.x);
}
}
-(void)touchesBegan:(NSSet*)touches withEvent:(UIEvent *)event
{
[super touchesBegan:touches withEvent:event];
CGPoint point = [[touches anyObject] locationInView:_label];
if ([_label pointInside:point withEvent:event]) {
NSLog(@"%f",point.x);
}
}