Skip to content

Instantly share code, notes, and snippets.

@dezinezync
Forked from steipete/UITableViewMore.m
Created April 24, 2014 16:36
Show Gist options
  • Save dezinezync/11260951 to your computer and use it in GitHub Desktop.
Save dezinezync/11260951 to your computer and use it in GitHub Desktop.
- (NSString *)tableView:(UITableView *)tableView titleForSwipeAccessoryButtonForRowAtIndexPath:(NSIndexPath *)indexPath {
return @"More";
}
- (void)tableView:(UITableView *)tableView swipeAccessoryButtonPushedForRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"I wanted to be a pretty public API, but then time ran out and they forgot me...");
// Hide the More/Delete menu.
[self setEditing:NO animated:YES];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment