There are lots of similar questions on here, but none that I think specifically ask this question, which is, is there any way in code to force the red delete button to appea
In the doubleFingerSwipe gesture's selector method set one variable and assign as no of row swiped and reload the table . In the
- (UITableViewCellEditingStyle) tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
if(indexPath.row == yourVariable) return UITableViewCellEditingStyleDelete;
else return UITableViewCellEditingStyleNone;
}
I think thats work for ur problem.