我有两个名为 MainGame 和 YourScore 的类。在 MainGame 中,我有一个 Score int 来跟踪游戏中的分数。在 YourScore 中,我想在文本标签中显示分数。
我可以将标签中的“Hello world”文本更改为分数吗?
这是我用于文本标签的代码
CCLabelTTF *label = [CCLabelTTF labelWithString:@"Hello World" fontName:@"Times New Roman" fontSize:32];
label.position = ccp(screenWidth / 2 , screenHeight /1.5 );
label.color = ccc3(255, 255, 255);
[self addChild: label];