由于某些情况(在我的计算机上没有管理员管理员),我无法使用最新版本的cocos2D。
我如何在该版本上编写简单文本?
感谢。
答案 0 :(得分: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];