I’ve got a UIButton which uses a custom font, which is set when my view loads:
- (void)viewDidLoad
{
[super viewDidLoad];
self.searchButton.titleLabel.font = [UIFont fontWithName: @"FONTNAME" size: 15.0 ];
}
The problem I’ve got is that the font is appearing to float up of the center line. If I comment out this line, the default font appears vertically centered fine. But changing to the custom font breaks the vertical alignment.
I’m getting the same issue on a Table Cell with a custom font too.
Do I need to tell the view somewhere that the custom font is not as tall as other fonts?
EDIT: I’ve just realized that the font I’m using is a Windows TrueType Font. I can use it fine in TextEdit on the Mac, only a problem with the alignment in my App

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:
This will create
Bold.hhea.xml. Open it with a text editor and increase the value ofascenderattribute. 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:Then just use the resulting ttf font in your app.
OS X El Capitan
The Apple Font Tool Suite Installer doesn’t work anymore on OSX El Capitan because of SIP because it tries to install the binary files into a protected directory.
You have to manually extract
ftxdumperfuser. First copy the pkg from the dmg to a local directory afterwards unpack theOS X Font Tools.pkgwithNow navigate into the folder
fontTools.pkgwithExtract payload with
Now the
ftxdumperfuserbinary is in your current folder. You could move it to/usr/local/bin/so that you can use it in every folder inside of the terminal application with the following.