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?
|
1
|
|
|
|
|
|
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 |
||
|
|
|
|
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. |
|||
|
|
|
|
For me, the following worked fine:
|
||
|
|
|
|
You can simply implement -tableView:didSelectRowAtIndexPath: function as return nil; |
||
|
