设置单元格高度取决于嵌入式集合视图的内容

时间:2016-06-22 18:06:54

标签: ios swift uitableview

我有一个静态的tableview。连续,我使用嵌入式集合视图控制器。

我正在尝试根据嵌入式集合视图控制器的内容设置行的高度。

我试过

self.tableView.estimatedRowHeight = 30.0
self.tableView.rowHeight = UITableViewAutomaticDimension

但它不起作用。 这是故事板上视图的截图

enter image description here

我该怎么做?

1 个答案:

答案 0 :(得分:0)

您应该使用tableView的委托方法来设置行height

func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat 
{
    return 30.0 // Here you need to mention/calculate the content height of your collectionView and return it.
}