I've implemented that default swipe-to-delete gesture in UITableView, and now I feel that this default button actually doesn't look good in the context. Also, it seems to not be localized. In french it still shows "delete" as text.
How can I provide a custom button here? This is how I implemented that guy:
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
// do stuff, a lot of stuff...really a lot...
}