Skip to content

Instantly share code, notes, and snippets.

@DevGW
Created December 29, 2022 13:45
Show Gist options
  • Save DevGW/df87395003b99e8f525e3b4737cad7a3 to your computer and use it in GitHub Desktop.
Save DevGW/df87395003b99e8f525e3b4737cad7a3 to your computer and use it in GitHub Desktop.
Objective-C :: UITableView Slide to Delete
// Override to support editing the table view.
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
if (editingStyle == UITableViewCellEditingStyleDelete) {
//add code here for when you hit delete
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment