设置我当前的代码,以便在按下按钮时,标签会使用此实现代码正确显示“Brendan”:
- (IBAction)buttonPressed:(id)sender
{
displayLabel.text= @"Brendan";
}
我想显示一个名为“score”的整数变量的值,而不是字符串“Brendan”。
这是我一直希望进入的代码,但显然是错误的。我只是不明白该怎么做。
- (IBAction)buttonPressed:(id)sender
{
displayLabel.text= @"%i",score;
}
我猜你不能使用displayLabel.text方法引用整数变量。正确的解决方案是什么?
谢谢,
答案 0 :(得分:0)
尝试:
displayLabel.text = [NSString stringWithFormat:@"%d",score];