Tableview 单元格字幕未显示或应用程序退出
Posted
技术标签:
【中文标题】Tableview 单元格字幕未显示或应用程序退出【英文标题】:Tableview cell subtitles not showing or the app quits 【发布时间】:2017-02-18 22:05:58 【问题描述】:当我使用这个时,我的 tableview 单元格字幕没有显示:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
var cell:UITableViewCell?
if tableView.tag == 1
guard let latestCell = tableView.dequeueReusableCell(withIdentifier: "latestCell") else
return UITableViewCell(style: .subtitle, reuseIdentifier: "latestCell")
latestCell.textLabel?.text = latest[indexPath.row]
latestCell.detailTextLabel?.text = latestSub[indexPath.row]
latestCell.accessoryType = .disclosureIndicator
return latestCell
但是如果我使用这个:
else if tableView.tag == 2
let olderCell = UITableViewCell(style: UITableViewCellStyle.subtitle, reuseIdentifier: "olderCell")
olderCell.textLabel?.text = older[indexPath.row]
olderCell.detailTextLabel?.text = olderSub[indexPath.row]
olderCell.accessoryType = .disclosureIndicator
return olderCell
else
return cell!
字幕加载完美,但在我关闭应用程序并重新加载视图后,应用程序自动退出,而不会提供崩溃日志或将我带到调试选项卡。
我知道数据来自的数组很好,我认为我已经在情节提要中正确设置了所有内容。关于这个主题已经发布了很多类似的问题,但它们似乎都归结为忘记将 cellStyle 设置为 .subtitle。提前感谢我得到的任何帮助!
顺便说一句。我的常规单元格标题就像我想要的那样工作。没问题。
【问题讨论】:
【参考方案1】:在您的第一部分中,您的保护语句在您设置单元格的文本和详细信息文本之前返回。如果您将其更改为:
if let latestCell = tableView.dequeueReusableCell(withIdentifier: "latestCell")
cell = latestCell
else
cell = UITableViewCell(style: .subtitle, reuseIdentifier: "latestCell")
cell.textLabel?.text = latest[indexPath.row]
cell.detailTextLabel?.text = latestSub[indexPath.row]
cell.accessoryType = .disclosureIndicator
return cell
现在将设置标签。
你的崩溃是由这个引起的:
return cell!
如果单元格 == nil,那么单元格!将尝试打开它。真的,你应该做的是调用 super 的实现:
return super.tableView(tableView, cellForRowAt: indexPath)
祝你好运。
【讨论】:
我无法返回 super.tableview,Xcode 不允许。除此之外,我更改了代码,它仍然没有显示字幕,但它也没有崩溃。感谢您的回复! 您有什么要补充的或其他解决方案吗? 抱歉没有早点回来。看起来它应该可以工作——也许在cell.detailTextLabel?.text = latestSub[indexPath.row]
之后设置一个断点,然后在 lldb 中输入p cell.detailTextLabel?.text
以查看它是否实际设置正确。输入p latestSub[indexPath.row]
以查看您的数组是否正确填充。
还要检查情节提要中的设置,例如确保 tableview 的内容是动态原型而不是静态单元格。还要仔细检查表格单元格上是否存在任何自动布局问题(您会在情节提要的场景列表中的违规场景旁边看到一个黄色小箭头)这通常由 Xcode 自动处理,但我已经不小心把事情搞砸了。以上是关于Tableview 单元格字幕未显示或应用程序退出的主要内容,如果未能解决你的问题,请参考以下文章