gpt4 book ai didi

ios - heightForRowAt indexPath 有问题

转载 作者:行者123 更新时间:2023-11-28 16:00:34 25 4
gpt4 key购买 nike

像往常一样,我尝试使用以下代码向某些单元格添加一些自定义高度值:

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

var height:CGFloat!

switch indexPath.row {
case 5:
height = 190

case 6:
height = 140

default:
break
}

return height

}

但应用程序崩溃并出现此错误: fatal error :在展开可选值时意外发现 nil

我以前做过这个没有任何问题,但这次应用程序崩溃了!为什么?

最佳答案

你必须实例化高度值

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

var height:CGFloat = 100

switch indexPath.row {
case 5:
height = 190

case 6:
height = 140

default:
break
}

return height

}

关于ios - heightForRowAt indexPath 有问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41148829/

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