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.
|
Set the table cell's |
|||||||||||
|
|
To completely prevent selection of the
|
|||||||||||||||
|
|
use this:
|
|||||||
|
|
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:
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! |
|||||||||
|
|
Another way is to add a couple category methods to
|
||||
|
|
|
Apple says that the first thing you should do in didSelectRowAtIndexPath is to deselect the row
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. |
|||||
|
|
If you have designed your cell in Interface Builder, you can do this by removing the checkbox from 'User Interaction Enabled' for the |
||||
|
|
|
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. |
|||
|
|
|
Set |
|||||
|
