如何在Objective C中添加UILabel中的细胞计数

时间:2017-02-13 05:44:22

标签: objective-c uitableview uilabel

我是iOS的新手,我面临着关于UITableView的计数单元格的问题,并将其添加到UILabel中。 我需要按照图像

中的说明进行操作

enter image description here

在图像中有1,2,3,4计数。任何人都这样做了。谢谢你!

2 个答案:

答案 0 :(得分:4)

在您的cellForRowAtIndexPath中,您只需设置单元格的UILabel,就像这样:

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

答案 1 :(得分:0)

Xcode 8.0 in

cell.countLabel.text = [nsstring stringwithformate:@“%d”,indexpath.row + 1];