DetailDisclosureButton

时间:2011-01-20 16:16:20

标签: iphone

使用DetailDisclosureButton

添加一些文本的方法是什么

1 个答案:

答案 0 :(得分:1)

将文本添加到UITableViewCell:

cell.textLabel.text = @"foo";

添加公开按钮:

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

如果你想更改公开按钮以某种方式包含文本,请将UITableViewCell子类化,然后使用它。