Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to apply a custom font throughout my iOS app. I found that I could use:

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

to set the default font and size for all UILabels. However, not all my UILabels share the same font size.

In Set a default font for whole iOS app?, someone had the same concern, and was told to set the size parameter to 0.0 to only set the font and not font size. When I tried doing this, all the UILabel text in my app disappeared (because evidently iOS took the 0.0 font size literally).

Any suggestions as to how I can universally set a font but not size? Thanks a lot!

share|improve this question

3 Answers

up vote 5 down vote accepted
- (void)viewDidLoad
{
    [super viewDidLoad];
    [self setFontFamily:@"FagoOfficeSans-Regular" forView:self.view andSubViews:YES];
}

-(void)setFontFamily:(NSString*)fontFamily forView:(UIView*)view andSubViews:(BOOL)isSubViews
{
    if ([view isKindOfClass:[UILabel class]])
    {
        UILabel *lbl = (UILabel *)view;
        [lbl setFont:[UIFont fontWithName:fontFamily size:[[lbl font] pointSize]]];
    }

    if (isSubViews)
    {
        for (UIView *sview in view.subviews)
        {
            [self setFontFamily:fontFamily forView:sview andSubViews:YES];
        }
    }    
}
share|improve this answer
+1 However, this approach fails if your app is using a UITableView. Labels in the individual cells will not be updated by this process. – Fostah May 1 at 19:41

I've used the accepted answer in my project, but needed a more generic function, so it'll change the font to every one possible, also I've chose to set a mapping between some stock fonts to our custom fonts, so they'll be accessible via storybuilder and xib files as well.

+ (void)setupFontsForView:(UIView *)view andSubViews:(BOOL)isSubViews
{
    if ([view respondsToSelector:@selector(setFont:)] && [view respondsToSelector:@selector(font)]) {
        id      viewObj = view;
        UIFont  *font   = [viewObj font];

        if ([font.fontName isEqualToString:@"AcademyEngravedLetPlain"]) {
            [viewObj setFont:[UIFont fontWithName:PRIMARY_FONT size:font.pointSize]];
        } else if ([font.fontName hasPrefix:@"AmericanTypewriter"]) {
            [viewObj setFont:[UIFont fontWithName:SECONDARY_FONT size:font.pointSize]];
        }
    }

    if (isSubViews) {
        for (UIView *sview in view.subviews) {
            [self setupFontsForView:sview andSubViews:YES];
        }
    }
}
share|improve this answer

-Added- If that's not possible, then you should create a subclass of UIViewController. In the viewDidLoad method put

for (UIView *view in self.subviews)
    if ([view isKindOfClass:[UILabel class])
        [(UILabel *) view setFont:[UIFont fontWithName@"Proxima Nova" size:[[[(UILabel *) view]font] pointSize]]

And then make all of your view controllers subclasses of it.

You can easily adapt the above code to apply to any kind of object.

-Original-

I have NO IDEA if this will work... it didn't but you might want to try

 [[UILabel appearance] setFont:[UIFont fontWithName:@"Proxima Nova" size:[[[UILabel appearance] font] pointSize]]];

The idea is to have it set the font size to whatever the label's current font size is. Let me know if it works... nope

share|improve this answer
Conceptually that's what I need to do (get the label's current font size). I just tried that: ..[[UILabel appearance] fontSize], but it just crashes with an unrecognized selector sent to [UIAppearance fontSize]. – Janum Aug 10 '12 at 19:33
That's why I'd recommend trying this one... unrecognized selector means that there isn't a fontSize property. The above code is syntactically correct (I think). – Dustin Aug 10 '12 at 19:34
Also tried that code verbatim, but it causes all the text to become invisible. – Janum Aug 10 '12 at 19:35
It logs <Error>: CGAffineTransformInvert: singular matrix. a ton of times. I'm assuming for every UILabel that it tries that code on. – Janum Aug 10 '12 at 19:38
Apparently that's the error you get when layoutSubViews: runs on a view (such as UIScrollView or UILabel) that has a frame of size (0,0) – Dustin Aug 10 '12 at 19:48
show 2 more comments

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.