Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I set the UITableView's cell property to be unselectable? I don't want to see that blue selection box when the user taps on the cell.

share|improve this question

9 Answers

up vote 65 down vote accepted

Set the table cell's selectionStyle property to UITableViewCellSelectionStyleNone. That should prevent it from highlighting, and you can also check that property in your tableView:didSelectRowAtIndexPath:.

share|improve this answer
3  
That does work in that the user will not see a selection, but didSelectRowAtIndexPath will still be called (where you could ignore it) – Kendall Helmstetter Gelner May 2 '09 at 3:49
1  
Kendall is right. Follow Sebastian Celis' answer to prevent didSelectRowAtIndexPath from being called in the first place. You should also set selectionStyle, though, to prevent the highlighting. – Daniel Dickison Jul 10 '09 at 18:50
yeah i suppose the Sebastian Celis' answer to be the correct answer, thanks Daniel – LolaRun Nov 21 '10 at 17:44

To completely prevent selection of the UITableViewCell, have your UITableViewDelegate implement tableView:willSelectRowAtIndexPath:. From that method you can return nil if you do not want the row to be selected.

- (NSIndexPath *)tableView:(UITableView *)tv willSelectRowAtIndexPath:(NSIndexPath *)path
{
    // Determine if row is selectable based on the NSIndexPath.

    if (rowIsSelectable)
    {
        return path;
    }

    return nil;
}
share|improve this answer
Thanks! Exactly what I needed. – Buchannon Jun 13 '11 at 18:27
2  
This should be the accepted answer in my opinion. It actually fixes the problem instead of masking it. – Tovi7 Oct 8 '12 at 19:07
2  
Note that tableView:willSelectRowAtIndexPath: is called after highlighting the cell, which will produce a flicker. From Apple's description: This method is not called until users touch a row and then lift their finger; the row isn't selected until then, although it is highlighted on touch-down. – simpleBob Feb 18 at 14:01
1  
I agree with @simpleBob. In order to use this solution, you need to also set cell.selectionStyle to UITableViewCellSelectionStyleNone on the unselectable rows. Otherwise it looks tacky. – Kyle Mar 6 at 0:02

use this:

cell.selectionStyle = UITableViewCellSelectionStyleNone;
share|improve this answer
1  
That only stops the selection color from showing, didSelectRowAtIndexPath is still called. – zekel Nov 8 '10 at 3:45
This is also exactly the same answer as Daniel Dickison's to this question. – user577537 Aug 29 '12 at 15:50

Had this problem, too, tried everything already mentioned. The final trick, which got rid of the "blue flash" at selecting a table cell was adding this line:

self.myTableView.allowsSelection = NO;

Not sure whether it was this one line or everything combined, but as total grand result I get no more blue selection or even the blue flash. Happy!

share|improve this answer
1  
Problem with this is that it makes it so all cells in the tableview are not selectable. If you want some cell to be selectable, and others to not be selectable, this won't do it. Sebastian's approach worked for me. – Terry Jun 26 '10 at 16:12
True, allowsSelection = NO will disable selection for all cells. – JOM Jun 29 '10 at 5:46
Is there an equivalent property in Interface Builder for this property? – chrish Sep 10 '10 at 17:51

Another way is to add a couple category methods to UITableViewCell. I like this better than Sebastians (also good) answer because the way I'm building my table. I thought it might be helpful to someone else.

- (void)setSelectable:(BOOL)enabled {
    [self setSelectionStyle:UITableViewCellSelectionStyleNone];
    [self setUserInteractionEnabled:enabled];
}

- (BOOL)isSelectable {
    BOOL disabled = [self selectionStyle]==UITableViewCellSelectionStyleNone &&
                     [self isUserInteractionEnabled];
    return ! disabled;
}
share|improve this answer

Apple says that the first thing you should do in didSelectRowAtIndexPath is to deselect the row

[tableView deselectRowAtIndexPath:[tableView indexPathForSelectedRow] animated:NO];

Then you can change the AccessoryType to be a checkmark, or none, etc. So when you enter didSelectRowAtIndexPath you could deselect the row, and if its not meant to be selected, simply don't check that row.

Table View Programming Guide

share|improve this answer
1  
In that case, when a user touches the cell, it will be highlighted for a short time and then unhighlighted - but as I understand, the point is to completely stop it from highlighting. – Psionides Nov 2 '09 at 15:03

If you have designed your cell in Interface Builder, you can do this by removing the checkbox from 'User Interaction Enabled' for the tableViewCell.

share|improve this answer

There is another simple way to avoid the selection appearing as blue.

Select a cell you don't want to appear as blue.

Then select the attributes inspector (the shield icon next to the ruler icon on the properties view on the side).

Then change the 'Selection' field from 'Blue' to 'None'.

Note, presumably this is still selecting, it will just not appear as selected if all you want is to avoid the UI effect.

share|improve this answer

Set cell.userinteractionenabled = FALSE;

share|improve this answer
4  
Don't do it like that, do it like this: cell.userInteractionEnabled = NO; – zekel Nov 10 '10 at 20:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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