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

Était-ce utile?

La solution

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

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top