Skip to content

Instantly share code, notes, and snippets.

@flashlib
Created October 14, 2013 08:17
Show Gist options
  • Save flashlib/6972544 to your computer and use it in GitHub Desktop.
Save flashlib/6972544 to your computer and use it in GitHub Desktop.
+ (CGFloat)heightOfComment:(NSString *)comment {
UILabel *label = PrototypeCell.commentLabel;
// NOTE: The height of the comment should always be at least the height of
// one line of text.
if (comment.length == 0)
comment = @" ";
return [comment sizeWithFont:label.font
constrainedToSize:label.frame.size
lineBreakMode:label.lineBreakMode].height;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment