ビューには 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.
}
私の質問が明確でない場合は、私に尋ねてください。
助けてくれてありがとう。