如何更新在 initWithSize 中创建的标签文本?这是 initWithSize 中标签的代码:
SKLabelNode *scoreLabel = [SKLabelNode labelNodeWithFontNamed:@"TimesNewRoman"];
scoreLabel.text = [NSString stringWithFormat:@"%i", score];
scoreLabel.fontSize = 30;
scoreLabel.position = CGPointMake(290, CGRectGetMidY(self.frame) - 30);
scoreLabel.zRotation = -M_PI/2;
[self addChild:scoreLabel];
随着游戏的运行,我更新了变量分数,我只是想知道如何让标签显示新分数。