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.

Possible Duplicate:
Setting UILabel - Font through code - generates error - iPhone

I want to know is there any way to set the font of a label programmatically as I need to change the font in my app when a condition is set true. How can I do so using Apple's variety of fonts?

share|improve this question
See this and this. – Adam Sep 20 '12 at 9:50
take a quick look at UILabel Class Reference, I hope I did't say any new things with it... – holex Sep 20 '12 at 9:57

marked as duplicate by Sulthan, Bourne, Mihai Iorga, DNA, Graviton Sep 24 '12 at 3:06

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.

4 Answers

up vote 1 down vote accepted

Make yourself a list of available fonts:

for( NSString *familyName in [UIFont familyNames] ) {
  for( NSString *fontName in [UIFont fontNamesForFamilyName:familyName] ) {
    NSLog(@"%@", fontName);
  }
}

Now set Font like this:

 [yourLabel setFont:[UIFont fontWithName:@"font name" size:18]];

Also like this:

 [yourLabel setFont:[UIFont systemFontOfSize:15]];
share|improve this answer
4  
Deja vu? – Adam Sep 20 '12 at 9:51
Thanks a lot for your help @Prince – iHackerMe Sep 20 '12 at 10:02

Here use this code.

[labelname setFont:[UIFont fontWithName:@"American Typewriter" size:18]];
share|improve this answer

Set like this

UIFont *font = [UIFont fontWithName:@"MyFont" size:20];
    [label setFont:font];
share|improve this answer

//set label

label.font = [UIFont fontWithName:@"Calibri" size:15];

//set label color

label.textColor = [UIColor redColor]; 

//set label colr if you have RGB value

label.textColor = [UIColor colorWithRed:180.0/255.0 green:6.0/255.0 blue:47.0/255.0 alpha:1.0];
share|improve this answer

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