我的代码中出现黄色错误,我不确定为什么我会收到它。这是我的代码:
for (int lives = 5; lives > 0; lives--)
{
self.HangmanStatus.text = @"Lives Left: %d", lives; //<-- Getting error here
}
任何帮助都会非常感激, 谢谢!
答案 0 :(得分:4)
这是您第一次创建NSString吗?您没有使用any of the NSString methods used to create one.
答案 1 :(得分:1)
正确的语法是:
self.HangmanStatus.text = [NSString stringWithFormat: @"Lives Left: %d", lives];