我想在iOS中UITableViewCell
的右侧放置另一个Cell文本,如下图所示。
我该怎么做?
感谢您的帮助。
答案 0 :(得分:4)
UITableViewCell有一个属性detailTextLabel
,它对应于您要查询的文本标签。只需为该标签指定文字
即
cell.textLabel.text = @"Google";
cell.detailTextLabel.text= @"Yesterday";
另外,小“箭头”是单元格上的附件视图
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;