I am able to make the red minus button appear on each of my UITableViewCells with the following calls:
[self.tableview setEditing:YES];
and
-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
return UITableViewCellEditingStyleDelete;
}
Now, the red minus buttons appear to the left of the UITableViewCells. However, I can't interact with them via a simple tap (only if I swipe from the red minus to the right).
I want the "Delete" button to appear when I tap on the "Red Minus" button, not just when I swipe.
Why isn't my "Red Minus" button listening to a tap gesture?
EDIT: Here's a screenshot of what my UITableViewCells look like:
