Question

i want to load a .fnt format fonts in my application, i tried using the same technique as i load .ttf fonts, but it doesnot work.

+(UIFont *) orangeFontWithSize:(int) size
{
    return [UIFont fontWithName:@"orange-font.fnt" size:size];
}

please help regarding this. thanks

Was it helpful?

Solution

.fnt font files are not currently supported in iOS apps.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top