Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. -(CGFloat)heightForLabel:(UILabel *)label withText:(NSString *)text{
  2.  
  3. NSAttributedString *attributedText = [[NSAttributedString alloc] initWithString:text attributes:@{NSFontAttributeName:label.font}];
  4. CGRect rect = [attributedText boundingRectWithSize:(CGSize){label.frame.size.width, CGFLOAT_MAX}
  5. options:NSStringDrawingUsesLineFragmentOrigin
  6. context:nil];
  7.  
  8. return ceil(rect.size.height);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement