gpt4 book ai didi

ios - 设置单元格高度取决于嵌入的collectionview的内容

转载 作者:行者123 更新时间:2023-11-30 13:18:41 25 4
gpt4 key购买 nike

我有一个静态表格 View 。连续地,我正在使用嵌入式 Collection View Controller 。

我试图根据嵌入式 Collection View Controller 的内容设置行的高度。

我试过了

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

但是这不起作用。这是 Storyboard View 的屏幕截图

enter image description here

我该怎么做?

最佳答案

您应该使用tableView的委托(delegate)方法来设置行高度

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.
}

关于ios - 设置单元格高度取决于嵌入的collectionview的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37975327/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com