Xcode错误"表达结果未使用"

时间:2013-07-18 17:35:41

标签: objective-c

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

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

任何帮助都会非常感激, 谢谢!

2 个答案:

答案 0 :(得分:4)

这是您第一次创建NSString吗?您没有使用any of the NSString methods used to create one.

答案 1 :(得分:1)

正确的语法是:

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

请看NSString reference