Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
UITableViewCell我想在 iOS的右侧放置另一个单元格文本,如下图所示。
UITableViewCell
我怎样才能做到这一点?
谢谢你的帮助。
UITableViewCell 有一个属性 ,detailTextLabel它对应于您要查询的文本标签。只需将文本分配给该标签
detailTextLabel
IE
cell.textLabel.text = @"Google"; cell.detailTextLabel.text= @"Yesterday";
此外,小“箭头”是单元格上的附件视图
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;