FZAcordion TableView Text超越了界限

时间:2016-12-06 01:21:07

标签: ios swift uitableview

我是IOS的新手,无论如何我已经从HERE实施了FZAccordion。现在我的问题是当我在标题部分有一个长文本和单元格超出界限时。所以我怎么能摆脱这个问题,这样无论文本多长时间它总是适合屏幕。

谢谢。

1 个答案:

答案 0 :(得分:1)

您可以使用

func tableView(_ tableView: UITableView, heightForRowAt indexPath:   IndexPath) -> CGFloat {
return UITableViewAutomaticDimension
}

 override func tableView(_ tableView: UITableView,estimatedHeightForRowAtindexPath: IndexPath) -> CGFloat {
return UITableViewAutomaticDimension}

这会自动调整单元格中文本的大小。