Skip to content

Instantly share code, notes, and snippets.

@piaoapiao
Created August 13, 2012 10:24
Show Gist options
  • Save piaoapiao/3339189 to your computer and use it in GitHub Desktop.
Save piaoapiao/3339189 to your computer and use it in GitHub Desktop.
Delete tableView
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"come here");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment