Consider i have the following text in a UILabel (a long line of dynamic text):

Since the alien army vastly outnumbers the team, players must use the post-apocalyptic world to their advantage, such as seeking cover behind dumpsters, pillars, cars, rubble, and other objects.

I want to resize the UILabel's height so that the text can fit in. I'm using following properties of UILabel to make the text within to wrap.

myUILabel.lineBreakMode = UILineBreakModeWordWrap;
myUILabel.numberOfLines = 0;

Please let me know if i'm not heading in the right direction. Thanks.

link|improve this question

feedback

8 Answers

up vote 123 down vote accepted

sizeWithFont constrainedToSize:lineBreakMode: is the method to use. An example of how to use it is below

//Calculate the expected size based on the font and linebreak mode of your label
CGSize maximumLabelSize = CGSizeMake(296,9999);

CGSize expectedLabelSize = [yourString sizeWithFont:yourLabel.font 
    			constrainedToSize:maximumLabelSize 
    			lineBreakMode:yourLabel.lineBreakMode];	

//adjust the label the the new height.
CGRect newFrame = yourLabel.frame;
newFrame.size.height = expectedLabelSize.height;
yourLabel.frame = newFrame;

Hope this helps.

chris.

link|improve this answer
8  
newFrame.size.height = maximumLabelSize .height; should be: newFrame.size.height = expectedLabelSize.height; – Mike Weller Jun 22 '09 at 12:02
2  
Bah. Your correct Michael. I have edited the original post. Thanks for pointing that out. – PyjamaSam Jun 22 '09 at 13:36
1  
If you want to modify UITableViewCell height for an unknown height, instead of subclassing cells, you could put this code into the tableView:heightForRowAtIndexPath: delegated method of your UITableViewController. Note that creating a UILabel with the "sizeToFit" solution below will not work in this case, so the above is your only solution if you want to avoid subclassing cells. +1 for the awesome solution, PyjamaSam – Mirkules May 19 '11 at 21:47
@thanks dude... – Inder Kumar Rathore Jun 14 '11 at 5:22
This uses 9999, how would you do it flexible to the text? – quantumpotato Apr 6 at 16:44
show 1 more comment
feedback

You were going in the right direction. All you need to do is:

myUILabel.numberOfLines = 0;
myUILabel.text = @"Enter large amount of text here";
[myUILabel sizeToFit];
link|improve this answer
1  
The size to fit was exactly what i needed to get the text to wrap, long with myUILabel.lineBreakMode = UILineBreakModeWordWrap; myUILabel.numberOfLines = 0; – Jack BeNimble Mar 5 '11 at 20:22
1  
works perfectly! – cV2 Mar 14 '11 at 13:29
2  
A much easier solution than the answer marked as correct and works just as well. – Answerbot Mar 26 '11 at 21:17
1  
Hey it wont work for multiple lines.....But is great for single line – Inder Kumar Rathore Jun 14 '11 at 5:23
2  
@Inder Kumar Rathore - I use this for multiple lines, all the time, hence the numberOfLines = 0; I guess it's missing setting the preffered width first, but I assumed that had already been done with the init of the UILabel. – DonnaLea Jul 6 '11 at 1:42
show 6 more comments
feedback

Thanks guys for help, here is the code I tried which is working for me

   UILabel *instructions = [[UILabel alloc]initWithFrame:CGRectMake(10, 225, 300, 180)];
   NSString *text = @"First take clear picture and then try to zoom in to fit the ";
   instructions.text = text;
   instructions.textAlignment = UITextAlignmentCenter;
   instructions.lineBreakMode = UILineBreakModeWordWrap;
   [instructions setTextColor:[UIColor grayColor]];

   CGSize expectedLabelSize = [text sizeWithFont:instructions.font 
                                constrainedToSize:instructions.frame.size
                                    lineBreakMode:UILineBreakModeWordWrap];

    CGRect newFrame = instructions.frame;
    newFrame.size.height = expectedLabelSize.height;
    instructions.frame = newFrame;
    instructions.numberOfLines = 0;
    [instructions sizeToFit];
    [self addSubview:instructions];
link|improve this answer
feedback

You can implement TableViewController's (UITableViewCell *)tableView:cellForRowAtIndexPath method in the following way (for example) :

#define CELL_LABEL_TAG 1
- (UITableViewCell *)tableView:(UITableView *)tableView  cellForRowAtIndexPath:(NSIndexPath *)indexPath {

NSString *text = @"my long text";

static NSString *MyIdentifier = @"MyIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if (cell == nil) {
  cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero  reuseIdentifier:identifier] autorelease];


CGFloat width = [UIScreen mainScreen].bounds.size.width - 50;
CGFloat height = [self textHeight:text] + 10;
CGRect frame = CGRectMake(10.0f, 10.0f, width, height);

UILabel *cellLabel = [[UILabel alloc] initWithFrame:frame];
cellLabel.tag = CELL_LABEL_TAG;
cellLabel.textColor = [UIColor blackColor];
cellLabel.backgroundColor = [UIColor clearColor];
cellLabel.textAlignment = UITextAlignmentLeft;
cellLabel.font = [UIFont systemFontOfSize:12.0f];
[cell.contentView addSubview:cellLabel];
[cellLabel release];

return cell;

}
UILabel *label = (UILabel *)[cell viewWithTag:CELL_LABEL_TAG];
label.text = text;
label.numberOfLines = 0;
[label sizeToFit];
return cell;

Also use NSString's sizeWithFont:constrainedToSize:lineBreakMode: method to compute the text's height.

link|improve this answer
nice answer ... – krunal Lathia Dec 29 '11 at 6:59
feedback

Thanks for this post. It helped me a great deal. In my case I am also editing the text in a separate view controller. I noticed that when I use:

[cell.contentView addSubview:cellLabel];

in the tableView:cellForRowAtIndexPath: method that the label view was continually rendered over the top of the previous view each time I edited the cell. The text became pixelated, and when something was deleted or changed, the previous version was visible under the new version. Here's how I solved the problem:

if ([[cell.contentView subviews] count] > 0) {
    UIView *test = [[cell.contentView subviews] objectAtIndex:0];
    [test removeFromSuperview];
}
[cell.contentView insertSubview:cellLabel atIndex:0];

No more weird layering. If there is a better way to handle this, Please let me know.

link|improve this answer
feedback

One line is Chris's answer is wrong.

newFrame.size.height = maximumLabelSize.height;

should be

newFrame.size.height = expectedLabelSize.height;

Other than that, it's the correct solution.

link|improve this answer
feedback

Finally, it worked. Thank you guys.

I was not getting it to work because i was trying to resize the label in heightForRowAtIndexPath method:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

and (yeah silly me), i was resizing the label to default in cellForRowAtIndexPath method - i was overlooking the code i had written earlier:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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