我需要为cocos2d游戏创建一个指令屏幕。请让我知道如何在cocos2d游戏中创建编号有序列表说明。您可以看到文本的相同方式
答案 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];
试试这个