I'm trying to use a Helvetica Neue Condensed font which I got from the Adobe Font Collection Pro Package. Unfortunately, it seems to draw incorrectly when I use it within a UILabel.

The line height seems to be calculated correctly (I think), but when the font is displayed, it is aligned to the very top of the bounding box. I called [myLabel sizeToFit] and only adjusted the width to produce this screen capture:

Screen capture of incorrect font rendering

I had the same problem with both the bold and regular version of the font. I was able to pull a version of Helvetica Neue Bold from OSX and put it on my device and it displays fine (green background in above picture).

What could be wrong with the either the font file or my code that would cause it to draw this way?

link|improve this question

56% accept rate
Could I somehow make a subclass of UIFont that can fix these problems? – MikeQ Mar 24 '11 at 18:07
+1 - same issue for me. I've tried using ZFont to help with this, and it does help somewhat, but not nearly enough. Might be something amiss with how the leading is interpreted with those custom fonts (no clue, really - but I have to think that may have something to do with it!). – Joe D'Andrea Jun 15 '11 at 4:17
Hi! Did you eventually found the solution? Please answer your question if yes. Thanks in advance. – Soonts Nov 26 '11 at 18:19
Unfortunately, no, I didn't. And I no long have access to the original font file which caused this problem. I like kolyuchiy's answer.. I only wish I could test it in my specific case. – MikeQ Apr 19 at 18:25
feedback

2 Answers

I posted a solution that involves patching ttf font file here:

A similar problem was discussed at Custom installed font not displayed correctly in UILabel. There was no solution given.

Here's the solution that worked for my custom font which had the same issue in UILabel, UIButton and such. The problem with the font turned out to be the fact that its ascender property was too small compared to the value of system fonts. Ascender is a vertical whitespace above font's characters. To fix your font you will have to download Apple Font Tool Suite command line utilities. Then take your font and do the following:

~$ ftxdumperfuser -t hhea -A d Bold.ttf

This will create Bold.hhea.xml. Open it with a text editor and increase the value of ascender attribute. You will have to experiment a little to find out the exact value that works best for you. In my case I changed it from 750 to 1200. Then run the utility again with the following command line to merge your changes back into the ttf file:

~$ ftxdumperfuser -t hhea -A f Bold.ttf

Then just use the resulting ttf font in your app.

link|improve this answer
Also, here's a link that served me as an inspiration mbauman.net/geek/2009/03/15/… – kolyuchiy Nov 29 '11 at 16:38
Thanks a lot for suggesting this tool! it can also be used to rename a font by editing the "-t name" section likewise. – Philippe Mar 1 at 21:58
##### ERROR: Could not create a font container from fontName.hhea.xml – P5ycH0 Apr 17 at 12:32
You can also try Mensis or FontForge. These apps can be used to change ascender property too. – kolyuchiy Apr 17 at 14:10
feedback

Have you tried Core Text? I've had some success rendering custom fonts through Core Text, but I don't know if it would fit your situation.

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.