我目前在我的单元格中有一个UILabel,它以1开头显示计数(1、2、3、4 ...)。但是,如何使计数递减?看起来很简单,但我似乎无法弄清楚。
我当前的代码:
cell.countLabel.text = [NSString stringWithFormat:@"%ld)", (long)indexPath.row +1];
答案 0 :(得分:2)
您可以从indexpath.row中减去项目总数
cell.countLabel.text = [NSString stringWithFormat:@"%ld)", (long)(items.count - indexPath.row)];