CCLabelTTF *label = [CCLabelTTF labelWithString:@"Score : #" fontName:@"Arial" fontSize:14];
// ask director the the window size
CGSize size = [[CCDirector sharedDirector] winSize];
// position the label on the center of the screen
label.position = ccp(size.width + 0, size.height + 0);
// add the label as a child to this Layer
[self addChild: label];
label.position = ccp(size.width + 0, size.height + 0);
我將如何獲得左下角的標籤。我不太瞭解座標系統。根據我的理解,Y是最底層的。 X離得很遠。所以當我使用該代碼時,標籤的位置在右上角。我的應用程序是肖像。cocos2d座標系統
還有更好的標籤作爲精靈,或者只是保持它那樣。 (它要記分)