2013-06-20 78 views

回答

4

UITableViewCell有一個屬性detailTextLabel,它對應於您要查詢的文本標籤。只要將文本分配到該標籤

cell.textLabel.text = @"Google"; 
    cell.detailTextLabel.text= @"Yesterday"; 

小「箭頭」,另外,就是對細胞

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; 
+1

我覺得detailTextLabel是cell.textLabel的下附件看法? ?不在右側。 –

+0

不,默認情況下它在右側 – bengoesboom

+0

所以你的意思是我需要使用UITableViewCellStyleDefault?或UITableViewCellStyleSubtitle? –

相關問題