IOS7 + UITextView获取正确的内容大小

时间:2015-10-09 09:59:21

标签: ios uitableview contentsize

 unname(sapply(ll, toString))

cell.msgContent是 cell.msgContent.sizeToFit() cell.msgContent.layoutIfNeeded() let fixedWidth = cell.msgContent.frame.size.width cell.msgContent.sizeThatFits(CGSize(width: fixedWidth, height: CGFloat.max)) let newSize = cell.msgContent.sizeThatFits(CGSize(width: fixedWidth, height: CGFloat.max)) var newFrame = cell.msgContent.frame newFrame.size = CGSize(width: max(newSize.width, fixedWidth), height: newSize.height) cell.msgContent.frame = newFrame ,位于自定义UITextView中。似乎我无法将UITableViewCell的框架更改为内容大小 我尝试了另一种方式,例如使用UITextView,但我无法从UITextView.contentSize获取正确的内容大小,有谁知道如何获得正确的内容大小?非常感谢。

0 个答案:

没有答案