UITableView UITableViewCellAccessoryDisclosureIndicator标签

时间:2014-06-16 17:50:50

标签: ios uitableview user-interface

标签" Office"如下图所示?

Image

你如何以编程方式设置?

1 个答案:

答案 0 :(得分:3)

这似乎是具有detailTextView样式的表格单元格的UITableViewCellStyleValue1

您可以在tableView:cellForRowAtIndexPath:

中设置文字
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [table dequeueReusableCellWithIdentifier:@"MyCellIdentifier"];
    cell.textLabel.text = @"Ringtone";
    cell.detailTextLabel.text = @"Office";
    return cell;
}