Я получаю сбои ткани на контроллере таблицы.Ткань имеет следующую трассировку, и я не могу воспроизвести ее на этапе разработки и тестирования.
<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
}