gpt4 book ai didi

ios - 在我的 ios swift TableView 中创建 2 个不同高度的动态单元格原型(prototype)

转载 作者:搜寻专家 更新时间:2023-11-01 06:45:29 28 4
gpt4 key购买 nike

我必须使用 2 个原型(prototype)单元快速创建一个 UIView 表,每个原型(prototype)单元具有不同的高度。我的第一个单元格在同一行只有一个标签和一个按钮,所以它的高度不应该太大。第二个单元格将有一个图像、4 个标签等,所以我需要高度。有没有办法在代码或 IB 中更改动态表格 View 单元格的高度?

谢谢! enter image description here

最佳答案

将您的 Controller 设置为UITableView委托(delegate)。然后实现可选函数

func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
if indexPath.row == 0
return 180
else
return 40 }

关于ios - 在我的 ios swift TableView 中创建 2 个不同高度的动态单元格原型(prototype),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31340287/

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