我有一个静态的tableview。连续,我使用嵌入式集合视图控制器。
我正在尝试根据嵌入式集合视图控制器的内容设置行的高度。
我试过
self.tableView.estimatedRowHeight = 30.0
self.tableView.rowHeight = UITableViewAutomaticDimension
但它不起作用。 这是故事板上视图的截图
我该怎么做?
答案 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.
}