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

Possible Duplicate:
Setting font of UILabel with Interface Builder comes out Helvetica

I've searched this site but I just found unanswered questions.

I've loaded a custom font into my xcode project. A [UIFont fontWithName:@"Laconic-Light" size:19] works. But interface builder doesn't like the font. I can't use it with IB it always shows the default font. Is there a way to tell IB that its ok to use the font?

share|improve this question
So its just broken... :P – david Nov 26 '10 at 13:15
afraid so :( can you maybe override IB and change it programatically? – benhowdle89 Nov 26 '10 at 13:17
Thats what I do. It just would have been nice for my situation. I'm loading in different xibs for the same view. So I have to go: Is it xib 1? Change all the labels and the button titles to Laconic. Is it xib 2? Change all the lables... :P – david Nov 26 '10 at 14:23
not a duplicate.. – prajul Nov 29 '12 at 8:59
show 1 more comment

marked as duplicate by casperOne Mar 2 '12 at 21:42

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

I have also this problem in Xcode 4. In my program, there are lots of UILabel which have no IBOutlets so I do in that way;

First, subclass the UILabel to CustomFontLabel

Then, override the "awakeFromNib" method

@implementation CustomFontLabel

- (void)awakeFromNib {
    [super awakeFromNib];
    self.font = [UIFont fontWithName:@"CustomFontName" size:self.font.pointSize];
}

@end

Finally, in Interface Builder > Identity Inspector change class to CustomFontLabel.

share|improve this answer
does this actually show the label with the correct font within interface builder then? Not just at runtime in the app? – Toby Nov 2 '12 at 9:34
@Toby Only at runtime since it's a subclass. – iWasRobbed Jan 23 at 14:28
thanks (pointless characters to let SO let me post) – Toby Jan 24 at 13:50

Another solution would be to subclass UILabel to load in your custom font. You can then reference it in IB, although you still cannot see the proper font.

share|improve this answer

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