label.userInteractionEnabled = YES; // 一定要设置 [label addGestureRecognizer:[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(labelClick:)]];
- (void)labelClick:(UITapGestureRecognizer *)tap{
NSLog(@"%@",tap.view);
}