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.

Here is my code

 UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(10, 50, 300, 50)];
    label.textAlignment = UITextAlignmentCenter;
    label.backgroundColor = [UIColor clearColor];
    label.textColor = [UIColor whiteColor];
    label.textColor.font = [UIFont fontWithName:@"Verdana" size:30];
    label.text = @"A very long string";
     etc...

The problems is that the font is large and can't fit in the label. It just display "A very"

What to do so entire text to be displayed. I have tried

label.lineBreakMode = UILineBreakModeWordWrap;
label.numberOfLines = 0;

But it doesn't work for me. I want to do that programmatically.

//EDIT

CGRect frame = CGRectMake(10, 50, 300, 50);
    NSString *labelString = @"Players.";

    UILabel *howManyUsersLabel = [[UILabel alloc]initWithFrame:frame];
    howManyUsersLabel.textAlignment = UITextAlignmentCenter;
    howManyUsersLabel.backgroundColor = [UIColor clearColor];
    howManyUsersLabel.textColor = [UIColor whiteColor];
    howManyUsersLabel.adjustsFontSizeToFitWidth = NO;
    howManyUsersLabel.numberOfLines = 0;

    CGFloat fontSize = 30;
    while (fontSize > 0.0)
    {
        CGSize size = [labelString sizeWithFont:[UIFont fontWithName:@"Verdana" size:fontSize] constrainedToSize:CGSizeMake(frame.size.width, 10000) lineBreakMode:UILineBreakModeWordWrap];

        if (size.height <= frame.size.height) break;
        fontSize -= 1.0;
        NSLog(@"test");
    }

    howManyUsersLabel.font = [UIFont fontWithName:@"Verdana" size:fontSize];
share|improve this question
1  
The only 2 options reduce the font size or make the Rect bigger – Michael Smith Feb 1 '12 at 19:06
Yes, but I think the question was how to calculate te correct font size at runtime if you don't know what the text is going to be in advance. – Nick Lockwood Feb 1 '12 at 19:44

3 Answers

up vote 15 down vote accepted

I think you just need to add this:

label.adjustsFontSizeToFitWidth = YES;
label.minimumFontSize = 0;

Then the text will automatically resize to fit the label.

Note however that this will only really work if the label.numberOfLines = 1, so that the text is on a single line.

If you need the text to wrap onto multiple lines but still shrink to fit, the solution is more complex. To do this, you need to calculate the rendered size of the text and then reduce it in a loop, as follows:

NSString *theText = @"A long string";
CGRect labelRect = CGRectMake(10, 50, 300, 50);
label.adjustsFontSizeToFitWidth = NO;
label.numberOfLines = 0;

CGFloat fontSize = 30;
while (fontSize > 0.0)
{
    CGSize size = [theText sizeWithFont:[UIFont fontWithName:@"Verdana" size:fontSize] constrainedToSize:CGSizeMake(labelRect.size.width, 10000) lineBreakMode:UILineBreakModeWordWrap];

    if (size.height <= labelRect.size.height) break;

    fontSize -= 1.0;
}

//set font size
label.font = [UIFont fontWithName:@"Verdana" size:fontSize];

This basically just reduces the font size until it fits the label.

share|improve this answer
Actually I need the text to wrap onto multiple lines... – objlv Feb 1 '12 at 19:09
Okay, see the updated solution. – Nick Lockwood Feb 1 '12 at 19:23
Hm.. I get Use of undeclared identifier constrainedToSize – objlv Feb 1 '12 at 19:29
Sorry, typo - try it now. – Nick Lockwood Feb 1 '12 at 19:43
Please see the updated code. The simulator just show black screen. – objlv Feb 1 '12 at 19:49
show 7 more comments
CGRect titleRect        = CGRectMake(10, 50, 300, 50);

UILabel *textTitleView  = [[UILabel alloc] initWithFrame:titleRect];

textTitleView.numberOfLines = 3  //for multiple lines;

textTitleView.lineBreakMode = UILineBreakModeWordWrap;

[UIFont fontWithName:@"Verdana" size:30];

textTitleView.text          = @"your text";
share|improve this answer

I've made this simple Category, here is how you use it:

First import it:

#import "UILabel+MFAutoresizeLabel.h"

Then on your label, instead of setText:, call setAutoresizedText:, Like so:

[myLabel setAutoresizedText:@"Hello World, I'm a lo........ng text"];

That's it :)

Header File (UILabel+MFAutoresizeLabel.h)

//
//  UILabel+MFAutoresizeLabel.h
//  Iftach Orr
//
//  Created by admin on 7/4/12.
//  Copyright (c) 2012 Iftach Orr. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface UILabel (MFAutoresizeLabel)

-(void) setAutoresizedText:(NSString *) text; 

@end

Implementation file (UILabel+MFAutoresizeLabel.m)

//
//  UILabel+MFAutoresizeLabel.m
//  Iftach Orr
//
//  Created by admin on 7/4/12.
//  Copyright (c) 2012 Iftach Orr. All rights reserved.
//

#import "UILabel+MFAutoresizeLabel.h"

@implementation UILabel (MFAutoresizeLabel)

-(void) setAutoresizedText:(NSString *) text
{    
    if([self.font pointSize] <= self.minimumFontSize)
    {
        [self setText:text];
        return;
    }

    int i;
    UIFont *aFont = self.font;

    int jumps = 1;
    if([self.font pointSize] - self.minimumFontSize > 12)
    {
        jumps = 2;
    }
    if([self.font pointSize] - self.minimumFontSize > 24)
    {
        jumps = 3;
    }

    for(i = [self.font pointSize]; i > self.minimumFontSize; i=i-jumps)
    {
        if(i < self.minimumFontSize)
        {
            i = self.minimumFontSize;
        }
        aFont = [aFont fontWithSize:i];

        CGSize constraintSize = CGSizeMake(self.bounds.size.width, MAXFLOAT);

        CGSize labelSize = [text sizeWithFont:aFont constrainedToSize:constraintSize lineBreakMode:self.lineBreakMode];

        if(labelSize.height <= self.bounds.size.height)
            break;
    }

    self.font = aFont;

    [self setText:text];
}

@end
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.