Swift version: 5.6
As soon as you set the editing
property of a UITableView
to be true, its cells stop being tappable. This is often a good idea, because if a user explicitly enabled editing mode they probably want to delete or move stuff, and it's only going to be annoying if they can select rows by accident.
Of course, as always, there are times when you specifically want both actions to be available - for the user to be able to move or delete a cell, and also tap on it to select. If that's the situation you find yourself in right now, here's the line of code you need:
tableView.allowsSelectionDuringEditing = true
SAVE 50% To celebrate WWDC23, all our books and bundles are half price, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.
Available from iOS 3.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.