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've read many questions on the topic but I can't seem to find what is wrong with my code:

UILabel *nameLabel = [[UILabel alloc] init];
[nameLabel setText: _nameString];

nameLabel.textAlignment    = UITextAlignmentLeft;
nameLabel.contentMode      = UIViewContentModeTop;
nameLabel.lineBreakMode    = UILineBreakModeWordWrap;
nameLabel.numberOfLines    = 0;
nameLabel.font             = [UIFont fontWithName:@"Verdana" size:14];
nameLabel.backgroundColor  = [UIColor clearColor];
nameLabel.textColor        = [UIColor colorWithRed:0 green:0.282 blue:0.31 alpha:1];
nameLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;

CGSize maximumLabelSize  = CGSizeMake(200.0f, 60.0f);
CGSize expectedLabelSize = [_nameString sizeWithFont:nameLabel.font
                                   constrainedToSize:maximumLabelSize 
                                       lineBreakMode:nameLabel.lineBreakMode];

nameLabel.frame = CGRectMake(10, 10, expectedLabelSize.width, expectedLabelSize.height);

And although sometimes it does work (on larger texts) on texts like "Airplanes being the future" the expectedLabelSize returns height 18.0f and it cuts the sentence on the "Airplanes being the"

What am I doing wrong here?

share|improve this question

1 Answer

up vote 0 down vote accepted

I had the same problem once, that was because my label's width was smaller than the maximum Label's width wat I used to calculate the "expectedLabelSize".

Since you are using an autoresizingMask your label might be too small.

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.