gpt4 book ai didi

ios - 完成一个 UITableView

转载 作者:行者123 更新时间:2023-11-28 07:06:56 25 4
gpt4 key购买 nike

我正在尝试完成一个 UITableView,但我在一行代码的最后部分收到错误。

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {   
var cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as UITableViewCell

//ERROR IS IN THE LINE ABOVE ("anyobject" is not convertible to "UItableViewCell"

if (indexPath.section == 1) {
let (unit, availability) = myUnits[indexPath.row]
cell.textLabel?.text = unit
cell.detailTextLabel?.text = availability
} else {
let (assessment, mark) = myAssessments[indexPath.row]
cell.textLabel?.text = assessment
cell.detailTextLabel?.text = mark

}
return cell
}

最佳答案

你必须告诉编译器你的单元格是 UITableViewCell 类,这意味着使用 ! 标记进行向下转型:

let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! UITableViewCell

关于ios - 完成一个 UITableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30167010/

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