我的视图中有 5 个标签,分别标记为 1、2、3、4 和 5。我在它们上启用了用户交互,并添加了点击手势。
现在我想要的是获取被触摸标签的标签。
我正在做这样的事情:
tapGesture=[[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapGestureSelector)];
tapGesture.numberOfTapsRequired = 1.0;
- (void)tapGestureSelector :(id)sender
{
// I need the tag to perform different tasks.
// So that I would like to get the touched label's tag here.
}
如果我的问题不清楚,请问我。
感谢期待帮助。