0
A
回答
0
最簡單的方法是創建一個CCLabelTTF
節點並將其添加到場景中。
0
這是一個可行的辦法:
此代碼是一個簡單的場景類別中:
// on "init" you need to initialize your instance
-(id) init
{
// always call "super" init
// Apple recommends to re-assign "self" with the "super's" return value
if((self=[super init]))
{
// create and initialize a Label
CCLabelTTF *label = [CCLabelTTF labelWithString:@"Hello World" fontName:@"Marker Felt" fontSize:64];
// ask director for the window size
CGSize size = [[CCDirector sharedDirector] winSize];
// position the label on the center of the screen
label.position = ccp(size.width /2 , size.height/2);
// add the label as a child to this Layer
[self addChild: label];
}
return self;
}
希望它可以幫助你!
相關問題
- 1. cocos2D-Box2D,CCSprite不顯示在屏幕上
- 2. 在屏幕上顯示文本 - MATLAB
- 3. 在cocos2d-x顯示加載屏幕android
- 4. 如何在屏幕上顯示文本編輯框?
- 5. 編寫長文本在Android屏幕上顯示以便屏幕滾動顯示
- 6. 在某些屏幕上屏幕顯示不正確Libgdx
- 7. 無法使用SDL_TTF在屏幕上顯示文本?
- 8. 如何使用OpenGL和C#在屏幕上顯示文本#
- 9. 在第二個屏幕上顯示對話框/框架全屏播放QT/C++
- 10. 喚醒屏幕並在鎖定屏幕上顯示對話框
- 11. 一旦執行操作,Actionscript在屏幕上顯示文本
- 12. 在屏幕上顯示div
- 13. 在屏幕上顯示textView
- 14. 在屏幕上顯示
- 15. ProgressTimer不能在屏幕上顯示cocos2d iphone
- 16. 在屏幕上顯示MigraDoc/PdfSharp文檔
- 17. 如何在屏幕上顯示文字?
- 18. C++在屏幕上未顯示文字
- 19. 在鎖定屏幕上顯示文字
- 20. iOS - 一些圖像沒有在啓動屏幕上顯示
- 21. 每次操作時在屏幕上顯示一些東西
- 22. 如何從文本文件顯示文本到pygame屏幕上?
- 23. Android - 如何在本機屏幕上顯示對話框?
- 24. Mosync:在另一個屏幕上顯示透明屏幕
- 25. 如何讓文本框的值在屏幕上的所需位置上顯示
- 26. 顯示在屏幕頂部的文本框的鍵盤
- 27. 顯示一些文本在
- 28. Cocos2d上的分割屏幕
- 29. Froyo如何在主屏幕上顯示一個對話框?
- 30. 有沒有辦法用IONIC框架在codova初始屏幕上手動添加一些文本?
你的意思是可可或http://code.google.com/p/cocos2d-iphone? – progrmr 2009-11-25 04:01:35