Tableview单元格字幕未显示或应用退出

时间:2017-02-18 22:05:58

标签: ios iphone swift uitableview tableview

我的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 个答案:

答案 0 :(得分: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!

如果cell == nil,那么cell!将试图打开它。实际上,你应该做的是调用超级实现:

return super.tableView(tableView, cellForRowAt: indexPath)
祝你好运。