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

I have a title that I put into a UILabel. I get it to wrap the text just fine onto two lines, but often the second line just has one small word in it. Is there a way to tell the system to wrap the lines a little more evenly?

The titles are dynamically fetched, so I don't believe I can have this determined ahead of time.

share|improve this question

2 Answers

up vote 1 down vote accepted

You could figure out what the length would be on a single line, then take that width, divide by 2, and use that result as the width constraint for a 2 line label. That would perhaps get you a better visual result, but you might have to tweak this a little if you have long words that would cause your label to be 3 lines (unless more than 2 lines is ok).

This approach has the disadvantage of doing a little extra work, but it might do the trick. For example:

    NSString *text = @"This is my very long title I want evenly on 2 lines";
    UILabel *theLabel = [[UILabel alloc] init];
    theLabel.text = text;
    // ...other label setup here, like font, etc
    [theLabel sizeToFit];

    CGSize constraint = CGSizeMake(theLabel.frame.size.width / 2.0, 1000);
    CGSize labelSize = [theLabel.text sizeWithFont:theLabel.font constrainedToSize:constraint lineBreakMode:UILineBreakModeWordWrap];

    theLabel.numberOfLines = 0;
    theLabel.lineBreakMode = UILineBreakModeWordWrap;
    CGRect frame = theLabel.frame;
    frame.size = labelSize;
    theLabel.frame = frame;

That should do it. Warning: Written from memory. :-)

share|improve this answer

I don't believe there's an easy way of doing this. There are UIKit additions to NSString that allow you to determine the required dimensions to display a string with a particular font. What you could do is calculate the height necessary using all of the available width, then run the same calculation in a loop, reducing the width until it requires additional vertical space. Then you use the previous value as the width of the label and align it appropriately.

share|improve this answer
If at the given font, the label only takes one line, that's perfectly fine. What I really want to avoid are very topheavy labels where everything but one word is on the top, and then there's one tiny word on the bottom. Basically, the title doesn't have to wrap, but if it's going to wrap, I'd like it to be a little more even. – s73v3r Jul 31 '12 at 21:28
Yes, that's what the method I described will do. Your initial calculation will produce a height that is one line high. Your loop will exit when it spills over into two lines. You use the previous value for the width, which is the narrowest width possible that allows the content to stay on one line. – Jim Jul 31 '12 at 21:30

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.