Skip to content

Instantly share code, notes, and snippets.

@maninp
Forked from nenadvulic/estimateHeight
Last active August 29, 2015 14:24
Show Gist options
  • Save maninp/cf8cc5910e22f8f0b57c to your computer and use it in GitHub Desktop.
Save maninp/cf8cc5910e22f8f0b57c to your computer and use it in GitHub Desktop.
+ (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