I have a tableview with a label and two buttons on each cell. At the moment I have this code that does a swipe to delete.
- (void) tableView: (UITableView *) tableView commitEditingStyle: (UITableViewCellEditingStyle) editingStyle forRowAtIndexPath: (NSIndexPath *) indexPath {
if (editingStyle == UITableViewCellEditingStyleDelete) {
[appointments removeObjectAtIndex: indexPath.row]; // manipulate your data structure.
[tableView deleteRowsAtIndexPaths: [NSArray arrayWithObject: indexPath]
withRowAnimation: UITableViewRowAnimationFade];
NSLog(@"row deleted"); // Do whatever other UI updating you need to do.
}
}
This code gets executing when I swipe. But I want it to execute when a button is pressed. The button is linked with the following IBAction.
- (IBAction)deleteRow:(id)sender {
//Delete row
}
One thing to keep in mind. I want that the delete button slides like when you swiped to delete.
Can anybody help me?