код в студию
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let sectionType = sections[indexPath.section] switch sectionType { case .searchBar: let cell = tableView.dequeueReusableCell(withIdentifier: SearchBarTableViewCell.reuseIdentifier) as! SearchBarTableViewCell cell.configure(delegate: self) return cell case .categories: let cell = tableView.dequeueReusableCell(withIdentifier: SearchCategoriesTableViewCell.reuseIdentifier) as! SearchCategoriesTableViewCell cell.configure(categoryViewModels: viewModel.categoriesCellsViewModels, subCategoryViewModels: viewModel.subCategoriesCellsViewModels, delegate: self) return cell case .consultants: // let cell = tableView.dequeueReusableCell(withIdentifier: SearchFavoriteConsultantsTableViewCell.reuseIdentifier) as! SearchFavoriteConsultantsTableViewCell let cell = UITableViewCell() cell.textLabel?.text = "Ячейка" return cell } } Еще вот код декью ячейки
Обсуждают сегодня