Hi all,
I'm trying to use a TrueType font for my MenuItemLabel. I created the the label like so
Label *label = [Label labelWithString:@"hello world" fontName:@"Olivia" fontSize:24];
MenuItemLabel *start = [MenuItemLabel itemWithLabel:label target:self selector:@selector(start:)];
However, no text can be seen on the screen while the actual menu item responds to the touch. Where do I need to place the ttf file? Is it simply not able to find the font to render?