Obj-c-数字表单元格降序而不是升序?

时间:2019-01-31 06:08:51

标签: ios objective-c uitableview

我目前在我的单元格中有一个UILabel,它以1开头显示计数(1、2、3、4 ...)。但是,如何使计数递减?看起来很简单,但我似乎无法弄清楚。

我当前的代码:

 cell.countLabel.text = [NSString stringWithFormat:@"%ld)", (long)indexPath.row +1];

1 个答案:

答案 0 :(得分:2)

您可以从indexpath.row中减去项目总数

cell.countLabel.text = [NSString stringWithFormat:@"%ld)", (long)(items.count - indexPath.row)];