When you tap a row in a UITableView, the row is highlighted and selected. Is it possible to disable this so tapping a row does nothing?
|
feedback
|
protected by Will♦ Nov 27 '10 at 21:39
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
|
All you have to do is set the selection style on the UITableViewCell instance using either:
or
Further, make sure you either don't implement More info here and here | |||||||||||||||||||
feedback
|
|
For me, the following worked fine:
| ||||
feedback
|
|
Because I've read this post recently and it has helped me, I wanted to post another answer to consolidate all of the answers (for posterity).
So, there are actually 4 different answers depending on your desired result: 1.To disable the blue highlighting without changing any other interaction of the cell:
I use this when I have a UIButton - or some other control(s) - hosted in a UITableViewCell and I want the user to be able to interact with the controls but not the cell itself. ***NOTE: As Tony Million noted above, this does NOT prevent the user from triggering tableView:didSelectRowAtIndexPath:. I get around this by simple "if" statements, most often testing for the section and avoiding action for a particular section. Another way I thought of to test for the tapping of a cell like this is:
**In my testing, this still allows controls inside the UITableViewCell to be interactive.
| |||||||
feedback
|
|
To sum up what I believe are the correct answers based on my own experience in implementing this: If you want to disable selection for just some of the cells, use:
As well as preventing selection, this also stops tableView:didSelectRowAtIndexPath: being called for the cells that have it set. (Credit goes to Tony Million for this answer, thanks!) If you want to disable selection for the whole table, use:
(Credit to Paulo De Barros, thanks!) | |||
|
feedback
|
|
From the UITableViewDelegate Protocol you can use the method willSelectRowAtIndexPath and return nil if you don't want the row selected. In the same way the you can use the willDeselectRowAtIndexPath method and return nil if you don't want the row to deselect. | |||||||
feedback
|
|
Try to type:
It will deselect your row when needed. | |||
|
feedback
|