0

我的代码中出现黄色错误,我不确定我为什么会得到它。这是我的代码:

for (int lives = 5; lives > 0; lives--)
{
     self.HangmanStatus.text = @"Lives Left: %d", lives; //<-- Getting error here
}

任何帮助将不胜感激,谢谢!

4

2 回答 2

4

这是你第一次创建 NSString 吗?您没有使用任何用于创建的 NSString 方法。

于 2013-07-18T17:56:29.083 回答
1

正确的语法是:

self.HangmanStatus.text = [NSString stringWithFormat: @"Lives Left: %d", lives];

查看NSString 参考

于 2013-07-18T18:11:45.803 回答