From f7e10f5c28719e91270b57d23b7196f610f63ebb Mon Sep 17 00:00:00 2001 From: Nolan Waite Date: Wed, 28 Jan 2015 22:43:11 -0400 Subject: [PATCH] Add -tableView:editActionsForRowAtIndexPath: to ASCommonTableViewDelegate It worked perfectly well before. Now it's explicitly declared. --- AsyncDisplayKit/ASTableViewProtocols.h | 1 + 1 file changed, 1 insertion(+) diff --git a/AsyncDisplayKit/ASTableViewProtocols.h b/AsyncDisplayKit/ASTableViewProtocols.h index eed099bb67..844581790f 100644 --- a/AsyncDisplayKit/ASTableViewProtocols.h +++ b/AsyncDisplayKit/ASTableViewProtocols.h @@ -71,6 +71,7 @@ - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath; - (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath; +- (NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath; - (BOOL)tableView:(UITableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath;