I have a table view with a dynamic cell:
extension CarViewController: UITableViewDataSource, UITableViewDelegate { func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return carsArray.count } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let rowData = carsArray[indexPath.row] let cell = tableView.dequeueReusableCell(withIdentifier: "carCell") as! CarCell cell.setButton(name: rowData.name) return cell } func tableView(_ tableView: UITableView, willSelectRowAt indexPath: IndexPath) -> IndexPath? { for n in 0...carsArray.count - 1 { if indexPath.row == n { performSegue(withIdentifier: "goToEditCar", sender: self) } } return indexPath } } It works fine, but how can I add a further cell at the bottom of the table view with custom content?