строка 0 tableViewController.tableView (_: cellForRowAt :) - PullRequest
1 голос
/ 13 июня 2019

Я получаю сбои ткани на контроллере таблицы.Ткань имеет следующую трассировку, и я не могу воспроизвести ее на этапе разработки и тестирования.

<compiler-generated> line 0
tableViewController.tableView(_:cellForRowAt:)

Пожалуйста, смотрите скриншот.

код для cellforrow

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
guard let cell = tableView.dequeueReusableCell(withIdentifier: "cell" , for : indexPath) as? customCell  else {
        print("custom cell are not set")
        return UITableViewCell()

    }
cell.NameLabel.Text = list[indexPath.row].name ?? "" 
.
.
.
return cell
}

enter image description here

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...