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 currently have a UILabel:

    factLabel = [[UILabel alloc] initWithFrame:CGRectMake(20, 100, 280, 100)];
    factLabel.text = @"some text some text some text some text";
    factLabel.backgroundColor = [UIColor clearColor];
    factLabel.lineBreakMode = UILineBreakModeWordWrap;
    factLabel.numberOfLines = 10;
    [self.view addSubview:factLabel];

Throughout the life of my iOS application, factLabel gets a bunch of different values. Some with multiple sentences. Others with just 5 or 6 words.

How can I set up the UILabel so that the font size changes so that the text always fits in the bounds I defined?

share|improve this question

4 Answers

up vote 49 down vote accepted
factLabel.numberOfLines = 1;
factLabel.minimumFontSize = 8.;
factLabel.adjustsFontSizeToFitWidth = YES;

The above code will adjust your text's font size down to (for example) 8 trying to fit your text within the label. numberOfLines = 1 is mandatory.

For numberOfLines > 1 there is a method to figure out the size of final text through NSString's UIKit addition methods, for example:

CGSize lLabelSIze = [yourText sizeWithFont: factLabel.font forWidth:factLabel.frame.size.width lineBreakMode:factLabel.lineBreakMode];

After that you can just resize your label using resulting lLabelSIze, for example (assuming that you will change only label's height):

factLabel.frame = CGRectMake(factLabel.frame.origin.x, factLabel.frame.origin.y, factLabel.frame.size.width, lLabelSIze.height);
share|improve this answer
but this puts the text all on one line. and if I change the factLabel.numberOfLines, then the font size does not change dynamically. – CodeGuy Feb 1 '11 at 17:06
@reising1: you're right. This is just how to make framework to do resizing work for you. – Martin Babacaev Feb 1 '11 at 17:10
so then the answer to my question is that there is no way to do it using the provided framework? – CodeGuy Feb 1 '11 at 17:12
@reising1: see my updated answer – Martin Babacaev Feb 1 '11 at 17:17
1  
@reising1: In this case you also can use NSString UIKit addition's method: sizeWithFont:constrainedToSize:lineBreakMode: But this way is a little bit difficult – Martin Babacaev Feb 1 '11 at 17:31
show 4 more comments
lable.font = [UIFont fontWithName:@"Arial" size:15];
share|improve this answer
This is a much better answer. Thanks! – Johno Jun 28 '12 at 16:02
thank you for the simplicity. upvoted! – Pavan Aug 13 '12 at 16:23
2  
If you want to avoid hard coding the system font, you can do [UIFont systemFontOfSize:15] – Petter Aug 14 '12 at 21:46
9  
This is not an answer to the asked question which is "Dynamically changing font size". – NobleK Sep 25 '12 at 6:24
you can put the variable instead of 15 in size. Or are you talking about something else?? – Pawriwes Sep 25 '12 at 8:49

Just send the sizeToFit message to the UITextView. It will adjust its own height to just fit its text. It will not change its own width or origin. [textViewA1 sizeToFit];

share|improve this answer

minimumFontSize has been deprecated with iOS6. You can use minimumScaleFactor.

yourLabel.adjustsFontSizeToFitWidth=YES; yourLabel.minimumScaleFactor=0.5;

this will take care of your font size according width of label & text.

Please let me know if any concerns.

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.