I've added the custom font "Helvetica-Condensed-Bold.otf" (font family Helvetica, font name Helvetica-Condensed-Bold) to my iOS app using the UIAppFonts Info.plist key. As expected, this font is used when I do the following:
someLabel.font = [UIFont fontWithName:@"Helvetica-Condensed-Bold" size:28.0];
But unlike what I expected, and unlike how this is supposed to work, this font is now also used in a bunch of places where I didn't want it to be, like in UIButtons and UILabels other than this one. In the iPhone Simulator, the font is even used in iOS's own status bar.
Would anyone of you know how to resolve this problem: to have to custom font only be used where I specifically say it should be?