Skip to content

Instantly share code, notes, and snippets.

@dodyw
Created February 13, 2014 10:32
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 dodyw/8972928 to your computer and use it in GitHub Desktop.
Save dodyw/8972928 to your computer and use it in GitHub Desktop.
get uilable height
CGSize valSize = [val.text sizeWithFont:val.font
constrainedToSize:val.frame.size
lineBreakMode:UILineBreakModeWordWrap];
CGFloat valHeight = valSize.height;
@dodyw
Copy link
Author

dodyw commented Feb 13, 2014

useful to count the number of lines

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment