gpt4 book ai didi

ios - 如何使用 XIB 在 UITableView 中使用静态单元格的数量

转载 作者:行者123 更新时间:2023-11-28 20:52:31 25 4
gpt4 key购买 nike

我一直在尝试使用 XIB 的静态单元格,但是在索引路径处的行单元格中,我收到一个错误,例如“无法将类型为‘UITableViewCell.Type’的返回表达式转换为返回类型‘UITableViewCell’”的“返回 UITableViewCell”。任何人都可以帮助我做到这一点,在此先感谢。

extension TriipDetailsViewController: UITableViewDelegate,UITableViewDataSource{
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 3
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if indexPath.row == 0
{
let cell : TripDriverDetailsCell = tripDetailsTableView.dequeueReusableCell(withIdentifier: "TripDriverDetailsCell", for: indexPath) as! TripDriverDetailsCell
return cell
}else if indexPath.row == 1 {
let cell : TripFareDetailsCell = tripDetailsTableView.dequeueReusableCell(withIdentifier: "TripFareDetailsCell", for: indexPath) as! TripFareDetailsCell
return cell
}else if indexPath.row == 2 {
let cell : TripPaymentModeCell = tripDetailsTableView.dequeueReusableCell(withIdentifier: "TripPaymentModeCell", for: indexPath) as! TripPaymentModeCell
return cell
}
return UITableViewCell
}


func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
if indexPath.row == 0{
return 230

}else if indexPath.row == 1{
return 200

}else if indexPath.row == 2{
return 120
}
}

}

最佳答案

消除return UITableViewCell

有些人可能会说return UITableViewCell(),但我宁愿把这种情况当作真正的错误来处理,例如

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
switch indexPath.row {
case 0:
return tableView.dequeueReusableCell(withIdentifier: "TripDriverDetailsCell", for: indexPath)

case 1:
return tableView.dequeueReusableCell(withIdentifier: "TripFareDetailsCell", for: indexPath)

case 2:
return tableView.dequeueReusableCell(withIdentifier: "TripPaymentModeCell", for: indexPath)

default:
fatalError("Unexpected row number \(indexPath.row)")
}
}

heightForRowAt 应该类似地处理 indexPath.row 不是 0、1 或 2 的情况,例如:

func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
switch indexPath.row {
case 0: return 230
case 1: return 200
case 2: return 120
default: fatalError("Unexpected row number \(indexPath.row)")
}
}

关于ios - 如何使用 XIB 在 UITableView 中使用静态单元格的数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56698340/

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