Advertisement
Guest User

Untitled

a guest
May 4th, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. + (SongAdditionalTextCell *)resize:(SongAdditionalTextCell *)additionalTextCell{
  2. UITextView *textView = additionalTextCell.additionalText;
  3. CGSize sizeThatFitsTextView = [textView sizeThatFits:CGSizeMake(textView.frame.size.width, MAXFLOAT)];
  4. NSLog(@"content height is %f, frame height is %f", textView.contentSize.height, textView.frame.size.height );
  5. additionalTextCell.addnlTextHeightConstraint.constant = sizeThatFitsTextView.height;
  6. return additionalTextCell;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement