Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a custom font I want to use for everything displaying text in my app, labels, text views etc.

IS there a way to set the default font (labels by default use SystemFont) for the whole app?

share|improve this question

3 Answers

up vote 2 down vote accepted

Probably not, you will probably have the set the font on your control yourself, but you can make the process easier by centralizing where you get the font types from, for example have the app delegate or some other common class have a method that returns the font, and anything needing to set the font can call that method, that will help in case you need to change your font, youd change it in one place rather than everywhere you set the fonts...Another alternative can be to make subclasses of your UI Elements that will automatically set the font, but that might be overkill..

share|improve this answer
for the record, this is what I did, but @Randall needed the rep, and provided a good answer. I just need to support less than 5.0 – Sam Jarman Jan 3 '12 at 7:40
4  
I disagree with what you did. The answer you selected is not valid when your question is tagged iphone-sdk-4.0. – Paulo Casaretto Apr 27 '12 at 13:08
corrected, my apologies. :) – Sam Jarman Jan 2 at 11:56

It seems to be possible in iOS 5 using the UIAppearance proxy.

 [[UILabel appearance] setFont:[UIFont fontWithName:@"YourFontName" size:17.0]];

That will set the font to be whatever your custom font is for all UILabels in your app. You'll need to repeat it for each control (UIButton, UILabel, etc.).

Remember you'll need to put the UIAppFonts value in your info.plist and include the name of the font you're including.

share|improve this answer
8  
Thanks for the response. I was able to get this to work. Do you know if there is a way to specify the font without specifying the font size? I have labels in my app that don't share the same font size. – Brandon Jan 26 '12 at 19:10
2  
Can I do this without overriding the point size of every instance? – Michael Forrest May 17 '12 at 9:51
   
@Brandon you can specify the font without specifying the font size by setting the UIFont size to 0.0 – jonsibley Jul 18 '12 at 4:03
8  
setFont: method is deprecated – Anand Oct 30 '12 at 10:53
2  
@Anand are you sure about this? I don't see it marked as deprecated in UILabel. It is deprecated for UIButton but it using the font for the titleLabel property instead which is a UILabel, so just setting the font with the appearance proxy for UILabel should be fine. – Adrian Schönig Feb 23 at 23:43
show 3 more comments

NUI is an alternative to the UIAppearance proxy. It gives you control over the font (and many other attributes) of a large number of UI element types throughout your application by simply modifying a style sheet, which can be reused across multiple applications.

After adding a NUILabel class to your labels, you could easily control their font in the style sheet:

LabelFontName    String    Helvetica

If you have labels with different font sizes, you could control their sizes using NUI's Label, LargeLabel, and SmallLabel classes, or even quickly create your own classes.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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