tableView cell.detailTextLabel.text возвращает ноль

Я пытаюсь установить строку для моего detailTextLabel в табличном представлении, но он возвращает nil, Я читал другие посты, где я не первый, но я не могу понять, что происходит в моем случае. Я использую Swift 4.

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell: UITableViewCell = {
            guard let cell = tableView.dequeueReusableCell(withIdentifier: "Cell") else {
                return UITableViewCell(style: UITableViewCellStyle.value1, reuseIdentifier: "Cell")
            }
            return cell
        }()

        let filtersRow: Bool = (currentSearchType == .all && indexPath.section == 0)

        var titleText: String = ""

        if filtersRow == true {
            titleText = "Filters"
            var detailText: String = ""
            if currentFilters.count == 0 {
                detailText = "None"
            }
            else if currentFilters.count == 1 {
                detailText = currentFilters.first!
            }
            else {
                detailText = "\(currentFilters.count)"
            }
            cell.textLabel?.text = titleText /// -> shows 'Filters' as expected
            cell.detailTextLabel?.text = detailText /// -> shows nothing
            print("Detail text: \(cell.detailTextLabel?.text)") --> returns nil
            print("cell.textLabel? \(String(describing: cell.textLabel))") /// --> Optional(<UITAbleViewLabel...>)
            print("cell.detailTextLabel? \(String(describing: cell.detailTextLabel))") /// ---> nil
        cell.accessoryType = .disclosureIndicator

            cell.accessoryType = .disclosureIndicator
            return cell
        }
        ...

Определенно что-то не так с тем, как я получаю свою ячейку, но я делаю то же самое в другом viewController, и все идет хорошо... У кого-нибудь есть идея?

0 ответов

Это происходит, когда detailTextLabel не создается. В основном ошибка в вашем коде или раскадровке. Так что проверьте создание проблемной Cell.

Прочтите также вопросы и ответы по этой теме в Stackru.

Другие вопросы по тегам