Skip to content

Instantly share code, notes, and snippets.

@stefanluptak
Created February 26, 2011 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stefanluptak/845240 to your computer and use it in GitHub Desktop.
Save stefanluptak/845240 to your computer and use it in GitHub Desktop.
CGFloat width = 300;
// returns 15
[text sizeWithFont:[UIFont fontWithName:@"Helvetica" size:12.0] forWidth:width lineBreakMode:UILineBreakModeWordWrap].height;
// returns 60
[text sizeWithFont:[UIFont fontWithName:@"Helvetica" size:12.0] constrainedToSize:CGSizeMake(width, 100) lineBreakMode:UILineBreakModeWordWrap].height
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment