Guest User

Untitled

a guest
Jul 15th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. - (CGSize)textWidth:(NSString*)stringParam
  2. {
  3. float width = 10000.0;
  4. float height = 10000.0;
  5. CGSize textSize = { width, height };
  6. CGSize size = [stringParam sizeWithFont:[UIFont boldSystemFontOfSize:14.0] constrainedToSize:textSize lineBreakMode:UILineBreakModeWordWrap];
  7. return size;
  8. }
Add Comment
Please, Sign In to add comment