indexPath is nil after didSelectRow in tableView – Ios swift
I want to pass the selected row to the next VC. But it is always nil, no matter which row was clicked. I'm happy for any hints. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { self.performSegue(withIdentifier: "goToDetails", sender: self) }…