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

Is there a way to have multiple lines of text in UILabel like in the UITextView or should I use the second one instead?

Thanks.

share|improve this question
Note that UILineBreakModeWordWrap was deprecated in iOS 6. You should now use NSLineBreakByWordWrapping = 0 See the documentation here – Austin Oct 3 '12 at 1:03
check this Question stackoverflow.com/questions/2312899/… – user1766342 Feb 13 at 7:17

7 Answers

up vote 194 down vote accepted

I found a solution.

One just has to add the following code:

textLabel.lineBreakMode = UILineBreakModeWordWrap;
textLabel.numberOfLines = 0;
share|improve this answer
19  
This works just fine in 4.3. – RunningPink Apr 10 '12 at 16:21
9  
UILineBreakModeWordWrap is actually the default so you don't need the first line. – Jarred Olson Jul 30 '12 at 18:23
19  
Just a note, this is deprecated in iOS 6.0, use NSLineBreakByWordWrapping instead – Adam Carter Dec 19 '12 at 19:02
This works great .. – SURESH SANKE Feb 7 at 11:53
thank you....!! – huyleit May 17 at 3:55

In IB, set number of lines to 0 (allows unlimited lines)

When typing within the text field using IB, use "alt-return" to insert a return and go to the next line (or you can copy in text already separated out by lines).

share|improve this answer
[As he knowingly digs up a more-than-one-year-old thread …] One thing I sometimes wish I could do in IB is enter text without embedded line breaks, set UILineBreakModeWordWrap and numberOfLines = 0, and then have the label auto-size the height automagically, all the while still designing in IB. I'm thinking of the case where the view is resized to landscape, where line breaks in the label might be problematic. Or ... I could be misusing IB! Perhaps having the labels auto-size within IB causes more problems than it solves? (Also, you can't invoke sizeToFit at this point anyway.) – Joe D'Andrea May 11 '10 at 20:38
+1 but how did you know that, Kendall? – Yar Sep 16 '11 at 23:17
The "0" thing I got from the docs for UILabel, the alt-return from a friend who has been using Interface Builder for many years. – Kendall Helmstetter Gelner Sep 16 '11 at 23:37
+1 for being the only answer to mention "alt-return". In particular "ctrl-return" seems like it's going to work but does not. – noa Mar 1 at 20:51

The best solution I have found (to an otherwise frustrating problem that should have been solved in the framework) is similar to vaychick's.

Just set number of lines to 0 in either IB or code

myLabel.numberOfLines = 0;

This will display the lines needed but will reposition the label so its centered horizontally (so that a 1 line and 3 line label are aligned in their horizontal position). To fix that add:

CGRect currentFrame = myLabel.frame;
CGSize max = CGSizeMake(myLabel.frame.size.width, 500);
CGSize expected = [myString sizeWithFont:myLabel.font constrainedToSize:max lineBreakMode:myLabel.lineBreakMode]; 
currentFrame.size.height = expected.height;
myLabel.frame = currentFrame;
share|improve this answer
This definitely does the trick -- Thanks! – mpemburn Jul 5 '12 at 16:20
1  
It's not exactly an answer to the question, but it's just what I needed! – Paulo Manuel Santos Sep 4 '12 at 11:39

If you have to use the:

myLabel.numberOfLines = 0;

property you can also use a standard line break ("\n"), in code, to force a new line.

share|improve this answer
textLabel.lineBreakMode = UILineBreakModeWordWrap;
textLabel.numberOfLines = 0;

The solution above does't work in my case. I'm doing like this:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    // ...

    CGSize size = [str sizeWithFont:[UIFont fontWithName:@"Georgia-Bold" size:18.0] constrainedToSize:CGSizeMake(240.0, 480.0) lineBreakMode:UILineBreakModeWordWrap];
    return size.height + 20;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil)
    {
        // ...
        cell.textLabel.lineBreakMode = UILineBreakModeWordWrap;
        cell.textLabel.numberOfLines = 0;
        cell.textLabel.font = [UIFont fontWithName:@"Georgia-Bold" size:18.0];
    }

    // ...

    UILabel *textLabel = [cell textLabel];
    CGSize size = [text sizeWithFont:[UIFont fontWithName:@"Georgia-Bold" size:18.0]
                                        constrainedToSize:CGSizeMake(240.0, 480.0)
                                            lineBreakMode:UILineBreakModeWordWrap];

    cell.textLabel.frame = CGRectMake(0, 0, size.width + 20, size.height + 20);

    //...
}
share|improve this answer
myUILabel.numberOfLines = 0;
myUILabel.text = @"your long string here";
[myUILabel sizeToFit];
share|improve this answer

You can use \r to go to next line while filling up the UILabel using NSString.

UILabel * label = [NSString stringWithFormat:@"%@ \r %@",@"first line",@"seconcd line"]; 
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.