I am little bit confused regarding changing the color of Menu Item.
Because I didn't found any methods regarding it.
I have implemented following in my Game.
[MenuItemFont setFontName:@"ArialRoundedMTBold"];
[MenuItemFont setFontSize:30];
MenuItem *start=[MenuItemFont itemFromString:@"-: Start Game :-" target:self selector:@selector(startGame:)];
MenuItem *help=[MenuItemFont itemFromString:@"-: Instructions :-" target:self selector:@selector(help:)];
Menu *menu=[Menu menuWithItems:start,help,nil];
[menu alignItemsVertically];
[menu setPosition:CGPointMake(160, 80)];
[self addChild:menu];
What code should I apply for changing the font color of menu item?