我定製了tableview單元格,我設置了一個時間標籤&我需要什麼,如果我觸摸/單擊標籤它顯示該標籤的文本。獲取標籤後的文本觸摸它[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
}
謝謝..
有啥問題? – Rajneesh071
做一件事兄弟。使用自定義按鈕而不是標籤。然後應用邏輯即首先獲取單元格,然後從單元格中獲取按鈕。然後詢問按鈕的標題。 – Tendulkar
是你的問題解決? – Rajneesh071