2010-11-11 31 views

回答

1

我真的会尝试并获得最新版本,你可以想像得到7.2长期不支持我会想。

但是它应该是这么简单:

 //Make your text. 
     CCLabelTTF *label = [CCLabelTTF labelWithString:@"Your text!" fontName:@"Helvetica" fontSize:24]; 
     //Choose a position on the screen. 
     label.position = ccp(240, 160); 
     //Add it to the scene. 
     [self addChild:label]; 
相关问题