I am working on a project on which I have to preselect a particular cell.
I can preselect a cell using -willDisplayCell, but I can\'t deselect it when t
-willDisplayCell
NSIndexPath * index = [self.menuTableView indexPathForSelectedRow]; [self.menuTableView deselectRowAtIndexPath:index animated:NO];
place this code according to your code and you will get your cell deselected.