我有一个 CCMenuitemLabel
I have a CCMenuitemLabel
CCMenuItemLabel *startGame = [CCMenuItemLabel itemWithLabel:str target:self selector:@selector(startGamefn)];
我想知道如何像在 CCLabelBMFont 中那样加载字体文件(例如:
and I was wondering how I would load a font file as you would do in CCLabelBMFont (example :
CCLabelBMFont *label = [CCLabelBMFont labelWithString:str fntFile:@"good_dog_plain_32.fnt"];
谢谢
CCMenuItemLabel 可以接受 CCLabelBMFont,因此您可以将函数调用中的 label
对象传递给 CCMenuItemLabel
:
CCMenuItemLabel can accept CCLabelBMFont so you can just past the label
object in the function call to CCMenuItemLabel
:
CCLabelBMFont *label = [CCLabelBMFont labelWithString:str fntFile:@"good_dog_plain_32.fnt"];
CCMenuItemLabel *startGame = [CCMenuItemLabel itemWithLabel:label target:self selector:@selector(startGamefn)];
这篇关于使用自定义字体文件创建 CCMenuItemLabel的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!