I have a problem with the UITableView Selection. If I click on the edit button the TableView goes into edit mode and loses the current selection.
How can I go into the edit mode without losing the selection?
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
// Return NO if you do not want the specified item to be editable.
return YES;
}