我的代码中出现黄色错误,我不确定我为什么会得到它。这是我的代码:
for (int lives = 5; lives > 0; lives--)
{
self.HangmanStatus.text = @"Lives Left: %d", lives; //<-- Getting error here
}
任何帮助将不胜感激,谢谢!
我的代码中出现黄色错误,我不确定我为什么会得到它。这是我的代码:
for (int lives = 5; lives > 0; lives--)
{
self.HangmanStatus.text = @"Lives Left: %d", lives; //<-- Getting error here
}
任何帮助将不胜感激,谢谢!
这是你第一次创建 NSString 吗?您没有使用任何用于创建的 NSString 方法。
正确的语法是:
self.HangmanStatus.text = [NSString stringWithFormat: @"Lives Left: %d", lives];
查看NSString 参考。