objective c如何将字符串值添加到整数?

时间:2016-12-30 22:43:53

标签: objective-c

我有标签,我想给它两个元素的值,其中一个是NSInteger和另一个字符串

_imgIndex.text = [@(index+1) stringValue]; //how to add string here?

1 个答案:

答案 0 :(得分:1)

您似乎有一个整数值(index)和一个Obj-C字符串对象(stringValue),并且您希望将它们连接起来。有很多方法可以做到这一点,这里有两个:

_imgIndex.text = [NSString stringWithFormat:@"%lu%@",index,stringValue];

另一种技术是首先将整数转换为字符串,然后连接另一个字符串:

_imgIndex.text = [@(index).description stringByAppendingString:stringValue];