I have a cell in a UITableView with a UITextField in it and when i tap the cell the Keyboard pops up. But what I want is that the didSelectRow function gets called instead.
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath)
What works is if I set the textField isUserInteractionEnabled to false but then becomeFirstResponder doesn't work anymore.
So is there any property to set so that only the didSelectRowAt functions gets called. A bit like if the allowsSelectionDuringEditing?