時間のラベルを設定したtableViewセルをカスタマイズしました。ラベルをタッチ/クリックすると、そのラベルのテキストが表示されます。
時間ラベル セットは次のとおりです。
cell.time.text = @"5 mins ago";
cell.time.tag = 1;
UITapGestureRecognizer* tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapAction:)];
[cell.time setUserInteractionEnabled:YES];
[cell.time addGestureRecognizer:tap];
したがって、ラベルをタップすると、以下を実行する必要があります
-(void)tapAction:(id)sender
{
// I want to get the text of that label for above example must return
// 5 mins ago
}
前もって感謝します..