I added a font file (.ttf) to my Xcode project, to resources. Also, I added it to the UIAppFonts in my info.plist.

When I want to use this font though, I don't even see it as a choice in IB.

After installing the font on my system, I started seeing it in IB, but still - changing to it doesn't change anything - some default system font is displayed in the Interface Builder as well as in iPhone emulator.

Are there any steps more I should do to be able to use my own font?

link|improve this question

68% accept rate
feedback

2 Answers

up vote 13 down vote accepted

To use custom fonts with iOS you have to set them programmatically.

For example, suppose you have a font file called swellfont.ttf that you add to your project. You then would go into your App-Info.plist file and add the full name of the file to the next index of the array keyed by UIAppFonts, as you mention.

<key>UIAppFonts</key>
<array>
    <string>swellfont.ttf</string>
</array>

Then, to use the font:

label.font = [UIFont fontWithName:@"swellfont" size:12];

Assuming that label is a UILabel and that swellfont.ttf is not protected. It's important to note that UIFont's fontWithName is not referring to the filename, instead its wanting the actual name of the font. If you open the font with FontForge you can see this information by selecting Element > Font Info from the menu bar. There are probably cleverer ways to find this information out.

link|improve this answer
5  
It should be noted that the string argument should be the font name not the filename for the font file (which may or may not be the same). That distinction had me spinning my wheels for a bit. – cesarislaw Dec 21 '10 at 21:40
yep - I was adding that info as you commented. It also gave me quite a bit of issue. Kind of confusing! Apple's playing fast-and-loose with the definition of "name". :) – Allyn Dec 21 '10 at 21:45
Thanks for this tip! Helped me a lot. – kender Dec 22 '10 at 15:39
This is where I had been going wrong... Thanks to this it's now working. Thanks :D - It's important to note that UIFont's fontWithName is not referring to the filename, instead its wanting the actual name of the font. – Designer023 Feb 4 at 16:40
1  
I ran into a problem where the font wasn't available even after following these steps. I needed to add the font file to my Copy Bundle Resources Build Phase to have it included in the build. – Ryan Bavetta Apr 4 at 20:43
show 1 more comment
feedback

I use 2 fonts in an APP. The first one was automatically added to the "Copy Bundle Resources", the other was not. I had to add that one myself.

Call in code:

[labelName setFont:[UIFont fontWithName:@"OneGreatBigFont" size:40]];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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