то иного, так должно быть?)
Ты насчет моего вопроса спрашиваешь?
Ага, почему не работал при такой реализации метода интересно, это же на подсветку выбранной ячейки метод?
Подсветка отключается в этом методе func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let index = indexPath.row guard let cell = tableView.dequeueReusableCell(withIdentifier: "SubTableViewCell", for: indexPath) as? SubTableViewCell else { return UITableViewCell() } cell.nameOfSubscription.text = subscriptions[index].subName.rawValue cell.daysCount.text = subscriptions[index].countDays cell.imageOfSubscription.image = subscriptions[index].subImage.image cell.backgroundColor = .backgroundColorVC.withAlphaComponent(0.0) cell.selectionStyle = .none return cell } А этот вообще отключает нажатие(делает ячейку не активной для взаимодействия ) func tableView(_ tableView: UITableView, shouldHighlightRowAt indexPath: IndexPath) -> Bool { return true }
tableView(_:shouldHighlightRowAt:) Asks the delegate if the specified row should be highlighted. В доке пишут что он для отключения подсветки, а не для отключения взаимодействия, да и по названию понятно, ну ладно, просто это странно)
во всем случае так функционирует)
Обсуждают сегодня