gpt4 book ai didi

ios - UITableView 设置 heightForRowAt 是 CGFloat.leastNormalMagnitude ,但它崩溃了

转载 作者:行者123 更新时间:2023-11-30 12:29:23 26 4
gpt4 key购买 nike

我的tableView设置

appTableView.estimatedRowHeight = 200
appTableView.rowHeight = UITableViewAutomaticDimension

然后我设置单元格的高度

func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
if indexPath == kFirstCellIndexPath && category == .overtime {
return CGFloat.leastNormalMagnitude // it will crash
return 0 // it will not crash
} else {
return UITableViewAutomaticDimension
}
}

当我重新加载tableView时,却崩溃了,为什么?

最佳答案

替换此行

    return CGFloat.leastNormalMagnitude 

  return  CGFloat(FLT_MIN)

在 TableView 的 heightForRowAtIndexpath 方法中。

关于ios - UITableView 设置 heightForRowAt 是 CGFloat.leastNormalMagnitude ,但它崩溃了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43777631/

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