标签" Office"如下图所示?
你如何以编程方式设置?
答案 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;
}