如何在cocos2d中创建带编号的有序文本?

时间:2013-12-12 11:02:10

标签: ios iphone ipad cocos2d-iphone

我需要为cocos2d游戏创建一个指令屏幕。请让我知道如何在cocos2d游戏中创建编号有序列表说明。您可以看到文本的相同方式

enter image description here

1 个答案:

答案 0 :(得分:1)

 UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(0,0, windowSize.height/2,windowSize.width/2)];
 textView.text = @"your text here";
 [textView setEditable:NO]; 
 [[[CCDirector sharedDirector]view]addSubview:textView]; 

试试这个