我的一些表格视图单元格有箭头,我设置箭头
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
但是在其中一个表格视图单元格中,我想显示一个简单的字符串或文本而不是箭头
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
if ([cell.textLabel.text isEqualToString:@"Version"]){
cell.accessoryType = UITableViewCellAccessoryNone;
}
}
如何在表格视图单元格的最右侧显示字符串?