vote up 1 vote down star

I'd like to use some fonts that aren't part of the iPhone OS. I've seen games that use non standard fonts. I can install the fonts, create images for each one in Photoshop and then use those images in the iPhone app. However, I don't think that is a practical way to go. If the color or tint needs to be adjusted (because of background) or size, I'll have to redesign every font I'm using. Is there a better way to do this?

I read this http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application and downloaded the open source font label app. However, it crashes most of the time when I try using particular fonts. In regards to the last comment about using UIFont with the fontWithName:size, that certainly doesn't work. Your font variable will be nil. Listing all available fonts reveals why - none of the custom fonts are in the list.

I've also read http://stackoverflow.com/questions/566054/how-do-i-include-a-font-with-my-iphone-application, which definitely does not work. Same as last comment in above link.

flag

45% accept rate

1 Answer

vote up -1 vote down

I believe the iPhone supports SVG graphics. SVG supports font embedding.

link|flag
Can you provide more info on how that is done? – 4thSpace Jun 14 at 17:45
I don't own an Iphone however you put glyphs in your SVG file (Adobe Illustrator can do this for you if you "embed glyphs" on export). Glyphs are nothing more than paths mapped to a font symbol. Provided the Iphone SDK can read and render SVGs with glyphs then you're good to go. – SpliFF Jun 14 at 18:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.