Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. UILabel *myLabel = [[UILabel alloc] init];
  2. myLabel.text = @"There are three types of people in this world: those who make things happen, those who watch things happen, and those who wonder what happened. Which do you want to be?";
  3. myLabel.numberOfLines = 0;
  4.  
  5. CGSize maxLabelSize = CGSizeMake(self.view.frame.size.width - 32.0f, FLT_MAX);
  6. CGSize expectedLabelSize = [myLabel sizeThatFits:maxLabelSize];
  7.  
  8. myLabel.frame = CGRectMake(16.0f, 16.0f, expectedLabelSize.width, expectedLabelSize.height);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement