标签: iphone
使用DetailDisclosureButton
答案 0 :(得分:1)
将文本添加到UITableViewCell:
cell.textLabel.text = @"foo";
添加公开按钮:
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
如果你想更改公开按钮以某种方式包含文本,请将UITableViewCell子类化,然后使用它。