Highlight table view cell on long press.
I referred the link
Long press is working fine but table view cell is not highlighting. so I added following line to handleLongPress method
[self.myTableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
After highlight of long pressed cell, also following conditions should be satisfied,
- Touching the same long pressed table view cell should unhighlight which is like a second touch of table view cell.
- Touching the other table view cell should highlight like multiple cell selection.
- On second touch of other table view cells should unhighlight.
Long press should behave like touching the table view cell but it should not be actual touching functionality. Please guide me.