在tableview中一起显示字符串和数字

时间:2010-08-21 12:13:10

标签: iphone

我正在尝试连接并在表格视图单元格中一起显示字符串和数字。有没有任何机制可以将它们一起转换为标签字符串?

4 个答案:

答案 0 :(得分:1)

您可以使用NSString * compositeString = [[NSString alloc] initWithFormat:@"%@ %d", myOtherString, myInt]

答案 1 :(得分:1)

NSString文档中的NSString stringWithFormat:中对此进行了描述。

答案 2 :(得分:0)

尝试cell.textLabel.text = [NSString stringWithFormat:@“%@:@ d”,strIntName,[num intValue]];

答案 3 :(得分:0)

cell.textLable.text = [NSString stringWithFormat:@“%@%d”,yourString,yourNumber];