我正在使用数组" allscores"解析文本标签" scorelbl"在填充的表格行中。
cell.scorelbl.text = [allscores objectAtIndex:[indexPath row] - 1];
这将打印在表格行
中1
2
3
2
etc
我现在需要在数组的每个对象旁边添加一些文字以使其打印
1/5
2/5
3/5
2/5
etc
我知道如何在字符串中执行此操作,但我正在寻找一种简单的方法将其与阵列的现有线集成。有什么想法吗?
答案 0 :(得分:0)
for (int i=0; i<[allscores count]; i++) {
NSString* string = [allscores objectAtIndex:i];
NSString * scorestringformatted = [NSString stringWithFormat:@"%@/5", string];
[allscores replaceObjectAtIndex:i withObject:scorestringformatted];
}
我正在尝试这个,但它打印出来:
1/5
2/5/5
3/5/5/5
2/5/5/5/5
etc