UITableView tap to deselect cell
ios, iphone, uitableview
Solution
Maybe my question wasn't specific enough, but the two answers are a bit wide of what I was after.
It seems this isn't possible, and I went with a gesture recognizer of the cell to manually set selected / unselected state.
Problem
I have a `UITableViewCell` that is selected when tapped. During this selected state, if the user taps the cell again, I want the cell to deselect. I can't find any of the delegate calls being hit. Any ideas how to implement this? Is it really going to be a gesture recognizer?