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?
|
|
||||
|
|
|
All you have to do is set the selection style on the
or
Further, make sure you either don't implement More info here and here |
|||||||||||||||||||||
|
|
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
**In my testing, this still allows controls inside the
|
|||||||||||||||
|
|
For me, the following worked fine:
|
|||||
|
|
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!) |
|||
|
|
|
From the In the same way the you can use the |
|||||||||
|
|
try this
and
and you can also set selection style using interfacebuilder. |
||||
|
|
|
As of iOS 6.0, This method lets you mark specific rows as unhighlightable (and implicitly, unselectable) without having to change a cell's selection style, messing with the cell's event handling with |
|||
|
|
|
We can write code like
but when we have custom cell xib above line give warning at that time for custom cell xib we need to set selection style None from the interface builder |
|||
|
|
|
If you want selection to only flash, not remain in the selected state, you can call, in
the following
so it will flash the selected state and revert. |
|||
|
|
|
I've been battling with this quite profusely too, having a control in my
If you tap the 3rd row nothing at all happens, the selection will stay on the second row. The functionality is practically a copy of Apple's Calendar app's add event time selection screen. The code is surprisingly compatible, all the way down to IOS2 =/:
This works in conjunction with setting the selection style to none, so the cell doesn't flicker on touch down events |
||||
|
|
|
The better approach will be:
This approach will not call |
|||
|
|
|
To disable the highlighting of the UItableviewcell
And should not allow the user to interact with the cell.
|
|||
|
|
|
You can also disable selection of row from xib where you put the TableView by choosing
|
|||
|
|
|
At least as of iOS 6, you can override methods in your custom cell to prevent the blue highlight. No other interaction is disabled or affected. All three must be overridden.
|
|||
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.





