up vote 117 down vote favorite
40
share [g+] share [fb]

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?

link|improve this question

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.

6 Answers

up vote 253 down vote accepted

All you have to do is set the selection style on the UITableViewCell instance using either:

cell.selectionStyle = UITableViewCellSelectionStyleNone;

or

[cell setSelectionStyle:UITableViewCellSelectionStyleNone];

Further, make sure you either don't implement -tableView:didSelectRowAtIndexPath: in your table view delegate or explicitly exclude the cells you want to have no action if you do implement it.

More info here and here

link|improve this answer
47  
ARRRRRRRGH the better way to do it is to use cell.userInteractionEnabled = NO; which will not only STOP the cell being highlighed but will also stop that particular cell triggering a didSelectRowAtIndexPath......... – Tony Million May 18 '11 at 17:49
3  
@Tony That does work very well, thanks! How about posting it as an answer so we can upvote it to the top? – JosephH May 27 '11 at 14:29
2  
@Tony It's bad idea if you have a UITextField inside the cell. – OhhMee Sep 18 '11 at 13:53
1  
@TonyMillion it's also a bad idea if you want to use in-built editing controls, such as swipe-to-delete. If you set userInteractionEnabled to NO then the delete button does not respond to user touch events. – Carlos P Oct 25 '11 at 23:52
Yes, Carlos you are right. So found any solutions for it? – Raj Nov 22 '11 at 5:39
feedback

For me, the following worked fine:

tableView.allowsSelection = NO;

link|improve this answer
this finally worked for me, I tried to use cell.selectionStyle = UITableViewCellSelectionStyleNone; but it didn't work. One thing to note: it should be: tableView.allowsSelection = NO; not false. – tony.tc.leung May 21 '10 at 18:26
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:

[cell setSelectionStyle:UITableViewCellSelectionStyleNone];

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:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    // A case was selected, so push into the CaseDetailViewController
    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    if (![cell selectionStyle] == UITableViewCellSelectionStyleNone) {
        // Handle tap code here
    }
}



2.To do this for an entire table, you can apply the above solution to each cell in the table, but you can also do this:

[tableView setAllowsSelection:NO];

**In my testing, this still allows controls inside the UITableViewCell to be interactive.


3.To make a cell "read-only", you can simply do this:

[cell setUserInteractionEnabled:NO];



4.To make an entire table "read-only"

[tableView setUserInteractionEnabled:NO];
link|improve this answer
If you load the cell design from a nib, the checkbox (in IB) will work just fine for #3 (and on tables for #4). For #4 vs #2, is the difference whether or not controls inside the cell will be interactive? – lilbyrdie Jun 10 '11 at 22:23
1  
Yes. If you want to disable selection but allow UIButtons, etc... to continue to support user interaction, use #2. If you want a completely read-only cell, use #4. Of course, why you would have anything but UIViews or UILabels in a non-interactive cell is beyond me. Maybe somebody would want to disable all interaction while something else is occurring. – mbm30075 Jun 10 '11 at 23:45
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:

cell.userInteractionEnabled = NO;

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:

tableView.allowsSelection = NO;

(Credit to Paulo De Barros, thanks!)

link|improve this answer
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.

link|improve this answer
1  
I don't like this method because it still shows the cell in its highlighted state until touch up. – Kelso.b Feb 14 '10 at 8:25
that's exactly why I like it :-) – Joris Weimar Nov 9 '11 at 16:06
feedback

Try to type:

cell.selected = NO;

It will deselect your row when needed.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.