在标签上显示字符串和变量

时间:2014-04-02 22:15:17

标签: ios objective-c

我意识到这是一个非常基本的问题,之前可能已经得到了解答,但我似乎无法找到答案。

基本上我想在标签上显示一些文本然后是整数。我试过了

countdownLabel.text = @"%d days left until the end of the semester!" daysBetween;

但它不起作用。我想也许我需要使用像

这样的东西
[NSString stringWithFormat:@"%d", daysLeftBetween];

但我无法弄清楚如何将所有东西放在一起。非常感谢任何帮助!

1 个答案:

答案 0 :(得分:3)

你拥有所有的位 - 只是'字符串'他们在一起:))

countdownLabel.text =[NSString stringWithFormat:@"%d days left until the end of the semester!", daysBetween];

stringWithFormat的第一个参数是格式 - 它可以是文字文本和前缀为'%'的占位符的组合。其余参数将按从左到右的顺序替换为占位符。

请参阅文档herehere