我有CCMenuitemLabel
CCMenuItemLabel *startGame = [CCMenuItemLabel itemWithLabel:str target:self selector:@selector(startGamefn)];
我想知道如何像在CCLabelBMFont中那样加载字体文件(例如:
CCLabelBMFont *label = [CCLabelBMFont labelWithString:str fntFile:@"good_dog_plain_32.fnt"];
感谢
答案 0 :(得分:5)
CCMenuItemLabel可以接受CCLabelBMFont,因此您可以通过label
函数调用中的CCMenuItemLabel
对象:
CCLabelBMFont *label = [CCLabelBMFont labelWithString:str fntFile:@"good_dog_plain_32.fnt"];
CCMenuItemLabel *startGame = [CCMenuItemLabel itemWithLabel:label target:self selector:@selector(startGamefn)];