Skip to content

Instantly share code, notes, and snippets.

@nenadvulic
Created February 12, 2014 18:02
Show Gist options
  • Save nenadvulic/8961086 to your computer and use it in GitHub Desktop.
Save nenadvulic/8961086 to your computer and use it in GitHub Desktop.
estimated height for cell with constraints
+ (CGFloat) estimateHeight:(NSString *)content{
NSAttributedString *bodyText = [NSAttributedString attributedStringWithMarkdownString:content font:MYCellFontDefine];
CGRect rect = [bodyText boundingRectWithSize:CGSizeMake(CELL_WIDTH, FLT_MAX) options:NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading context:nil];
return CGRectGetHeight(rect);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment