Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Replace action of swipe to delete by clicking on a button

I have the following code.

- (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 piece of code is going to be execute when I swipe on the cell. But what I want is that this code executes when I press a button in my custom tableview cell. Like you can see on the screenshot below I have 2 buttons on my tableview.

enter image description here

When the user presses the 'X' button the delete button should roll out like when you swipe the cell. I have the following action attached to my cell.

-(IBAction) deleteAppointment:(id) sender{
   //show swipe delete button
}

And attached it in my cellForRowAtIndex at the following way.

cell.deleteAppointment.tag = indexPath.row;
[cell.deleteAppointment addTarget:self action:@selector(deleteAppointment:) forControlEvents:UIControlEventTouchUpInside];
share|improve this question

marked as duplicate by Midhun MP, Janak Nirmal, Fahim Parkar, evilone, Kurtis Nusbaum Dec 1 '12 at 8:22

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 0 down vote accepted

just addTarget with button in your cell and set tag to every button like bellow..

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    /////your code
    UIButton *btnClose = [[UIButton alloc]initWithFrame:CGRectMake(270, 7, 20, 20)];
    btnClose.tag = indexPath.row;
    [btnClose setImage:[UIImage imageNamed:@"closeImage.png"] forState:UIControlStateNormal];
    [btnClose addTarget:self action:@selector(deleteAppointment:) forControlEvents:UIControlStateNormal];
    [cell addSubview:btnClose];
    return cell;
}

and in the method see like this...

    - (IBAction)deleteAppointment:(id)sender {

            // here bellow code for swipe the close button in cell
            UIButton *btn = (UIButton *)sender;
            int SelectedRowNo = btn.tag;
            [UIView beginAnimations:nil context:NULL];
            [UIView setAnimationDuration:0.3];
            [btn setFrame:CGRectMake(btn.frame.origin.x - 50, btn.frame.origin.y, btn.frame.size.width, btn.frame.size.height)];
            [UIView commitAnimations];

            //// here bellow code for delete raw from table
            /*
             [appointments removeObjectAtIndex: SelectedRowNo];
             UITableViewCell *clickedCell = (UITableViewCell *)[[sender superview] superview];
             NSIndexPath *clickedButtonPath = [yourTableView indexPathForCell:clickedCell];
             [yourTableView deleteRowsAtIndexPaths: [NSArray arrayWithObject: clickedButtonPath]
             withRowAnimation: UITableViewRowAnimationFade];
             NSLog(@"row deleted");  // Do whatever other UI updating you need to do.
             */
}

i hope this help you..

share|improve this answer
Where should I put this code ? – Stef Geelen Nov 30 '12 at 10:26
in your cellForRowAtIndexPath method with tag so you can easily findout which raw clciked here.. – Paras Joshi Nov 30 '12 at 10:27
@StefGeelen now try this Updated code dude.. :) – Paras Joshi Nov 30 '12 at 10:36
Thank you, but that's not what I have in mind. What I want is that when I press the 'x' button. A button should slide into my cell like the swipe to delete action. Do you know what I mean ? – Stef Geelen Nov 30 '12 at 10:41
oh ok then here if possible then try my code wait i will post the code dude.. – Paras Joshi Nov 30 '12 at 10:43
show 3 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.