如何在iOS中的UITableViewCell右侧放置另一个TextLabel

时间:2013-06-20 15:44:20

标签: ios cocoa-touch uitableview

我想在iOS中UITableViewCell的右侧放置另一个Cell文本,如下图所示。

enter image description here

我该怎么做?

感谢您的帮助。

1 个答案:

答案 0 :(得分:4)

UITableViewCell有一个属性detailTextLabel,它对应于您要查询的文本标签。只需为该标签指定文字

即可

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

另外,小“箭头”是单元格上的附件视图

  cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;