我有兩個名爲MainGame和YourScore的類。在MainGame中,我有一個Score int,它可以保持遊戲中得分的軌跡。在YourScore中,我想在文本標籤中顯示分數。從另一個類訪問int的iOS
我可以將標籤中的「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];
http://www.koboldtouch.com/display/IDCAR/Strategies+for+Accessing+Other+Nodes – LearnCocos2D