ios – 函数中缺少返回预期返回’UITableViewCell’,但实际返回两次

ios – 函数中缺少返回预期返回’UITableViewCell’,但实际返回两次,第1张

概述我正在尝试设置一个表视图,它将根据顶部的分段控制器更改单元格.但是,在重新加载tableview时尝试更改单元格时,我收到了返回函数错误,而实际上我有一个返回函数.我该怎么做才能解决这个问题? func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 我正在尝试设置一个表视图,它将根据顶部的分段控制器更改单元格.但是,在重新加载tablevIEw时尝试更改单元格时,我收到了返回函数错误,而实际上我有一个返回函数.我该怎么做才能解决这个问题?

func tableVIEw(_ tableVIEw: UItableVIEw,cellForRowAt indexPath: IndexPath) -> UItableVIEwCell {    if frIEndSelector.selectedSegmentIndex == 0 {        print("0")        cell = self.frIEndstable.dequeueReusableCell(withIDentifIEr: "cell",for: indexPath) as! FrIEndstableVIEwCell        cell.nameLabel.text = frIEnds[indexPath.row]        cell.bacLabel.text = String(frIEndsBac[indexPath.row])        cell.statusImageVIEw.image = frIEndsImage[indexPath.row]        return cell    }    if frIEndSelector.selectedSegmentIndex == 1 {        print("1")        celladd = self.frIEndstable.dequeueReusableCell(withIDentifIEr: "celladd",for: indexPath) as! FrIEndsAddtableVIEwCell        celladd.nameLabel.text = requested[indexPath.row]        celladd.statusImageVIEw.image = UIImage(named: "greenlight")        return celladd    }}

解决方法 你应该返回一个单元格.在上面的代码中,如果两个条件都失败,则不会返回任何内容.所以提出警告.只需删除第二个“if”条件并使用else情况如下:

func tableVIEw(_ tableVIEw: UItableVIEw,cellForRowAt indexPath: IndexPath) -> UItableVIEwCell {    if frIEndSelector.selectedSegmentIndex == 0 {        print("0")        cell = self.frIEndstable.dequeueReusableCell(withIDentifIEr: "cell",for: indexPath) as! FrIEndstableVIEwCell        cell.nameLabel.text = frIEnds[indexPath.row]        cell.bacLabel.text = String(frIEndsBac[indexPath.row])        cell.statusImageVIEw.image = frIEndsImage[indexPath.row]        return cell    }    else {        print("1")        celladd = self.frIEndstable.dequeueReusableCell(withIDentifIEr: "celladd",for: indexPath) as! FrIEndsAddtableVIEwCell        celladd.nameLabel.text = requested[indexPath.row]        celladd.statusImageVIEw.image = UIImage(named: "greenlight")        return celladd    }}
总结

以上是内存溢出为你收集整理的ios – 函数中缺少返回预期返回’UITableViewCell’,但实际返回两次全部内容,希望文章能够帮你解决ios – 函数中缺少返回预期返回’UITableViewCell’,但实际返回两次所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1209491.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存