Skip to content

Instantly share code, notes, and snippets.

@scheinem
Last active September 26, 2019 05:23
  • Star 13 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save scheinem/e36835db07486e9f7e64 to your computer and use it in GitHub Desktop.
iOS 8 beta 2: ''tableView:editActionsForRowAtIndexPath:"
- (NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewRowAction *moreAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"More" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
// show UIActionSheet
}];
moreAction.backgroundColor = [UIColor greenColor];
UITableViewRowAction *flagAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"Flag" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
// flag the row
}];
flagAction.backgroundColor = [UIColor yellowColor];
return @[moreAction, flagAction];
}
/*
* EDIT on 06.07.2014 because of some confusion if 'tableView:commitEditingStyle:forRowAtIndexPath:' is needed.
* It IS needed.
*/
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
// No statement or algorithm is needed in here. Just the implementation
}
@Dimillian
Copy link

Does it work? I implemented it, can't swipe my UITableView cells.

@siancu
Copy link

siancu commented Jun 30, 2014

Yeah, same for me, I couldn't get it to work. I even tried to set the table into edit mode beforehand, but it still didn't work.

@scheinem, if you manage to make it work, can you post a more detailed example?

@r-peck
Copy link

r-peck commented Jun 30, 2014

You still have to implement tableView:commitEditingStyle:forRowAtIndexPath: to get the buttons to appear. Still seems unpolished though.

@r-peck
Copy link

r-peck commented Jun 30, 2014

Note that method is not called when the buttons are tapped (and header docs indicate this should be the case).

@siancu
Copy link

siancu commented Jul 2, 2014

Let's wait for the next drop then, hopefully it'll work better :-)

@scheinem
Copy link
Author

scheinem commented Jul 6, 2014

@r-peck @siancu Did you implement tableView:commitEditingStyle:forRowAtIndexPath:?

Just insert the following code into your TableViewController.m and it should work:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    // Nothing is needed here
}

@rubencodes
Copy link

Thanks! This has been super helpful! One question, though: when selecting one of the options presented, the row doesn't return to its original position. Any thoughts on how to get it back it its resting position?

EDIT: Solved by adding [self.tableView setEditing:NO] to the action handler per suggestion by @marksands https://twitter.com/marksands/status/488430429612277761

@dleute
Copy link

dleute commented Jul 19, 2014

This doesn't work for insert indicator rows for me. Only delete indicators. I'm hoping this works in iOS 8 final. I need the control space in my app.

@jellyZ
Copy link

jellyZ commented Sep 1, 2014

good~

@MVakas
Copy link

MVakas commented Sep 17, 2014

Worked for me like a charm.

@omgbbqhaxx
Copy link

İs this code work with ios 7 or 6 ? or only work with ios8 + ?

@scheinem
Copy link
Author

@omgbbqhaxx Only 8.0 beta 2 and above

@guomingman
Copy link

but why we should add

  • (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    // Nothing is needed here
    }
    I debug it ,and didn't execute this API.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment