Skip to content

Instantly share code, notes, and snippets.

@KyonLi
Created August 6, 2015 09:32
Show Gist options
  • Save KyonLi/dcbc397e817270f9e87b to your computer and use it in GitHub Desktop.
Save KyonLi/dcbc397e817270f9e87b to your computer and use it in GitHub Desktop.
UITableViewCell remain highlighted
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
if (self.tableView.indexPathForSelectedRow) {
[self.tableView deselectRowAtIndexPath:self.tableView.indexPathForSelectedRow animated:animated];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment