I have a custom UITableViewCell on which I have added a button, I have associated that button on an IBAction in my viewController. Now the problem that i am facing is how do I know from which cell that button was created. When I present my viewController which has a table in it and has multiple rows (custom UITableViewCell), now when the user presses the button the action is getting called, but how do I know which row was it.

Because based on the row index I need to store some value.

Edit: I have some clue on it now, but still I am not sure how will I do it, so it seems like on my tableViewController cellForRowAtIndexPath method I have to do something like this

[cell.button1 addTarget:self action:@selector(addToCart:) forControlEvents:UIControlEventTouchUpInside];

And then I have to write a method

-(IBAction) addToCart:(id) sender

But still what I don't know is how do i get the row index in my addToCart method. Appreciate your help.

link|improve this question

See this question or this question. – Anna Karenina Nov 5 '10 at 13:48
I tried as suggested on the above link UIButton button = (UIButton *)sender; UITableViewCell *cell = (UITableViewCell)[button superview]; int row = [[self tableView] indexPathForCell:cell].row; NSLog(@"The row id is %@", row); but this always returns row as 0. Could the problem be be that I am using a custom UITableViewCell ? – Yogesh Nov 8 '10 at 1:39
row is an int so use %d in the format string (not %@). – Anna Karenina Nov 8 '10 at 16:04
Also, it should be UITableViewCell *cell = (UITableViewCell *)[button superview]; (need asterisk). If still doesn't work, you should post how you're adding the button to the cell in cellForRowAtIndexPath and the full button handler method. – Anna Karenina Nov 8 '10 at 16:19
Hi aBitObvious, Thanks for all your help, I have got it working probably the same way as you suggested. Thanks a lot. – Yogesh Nov 8 '10 at 16:24
feedback

1 Answer

up vote 4 down vote accepted

Ok, finally I got the answer, looking into different forums, people were suggesting to do something like this

in the custom table view controller in cellForRowAtIndexPath do this

cell.addToCart.tag = indexPath.row;
[cell.addToCart addTarget:self action:@selector(addToCart:)    
                               forControlEvents:UIControlEventTouchUpInside];

where addToCart is name of UIButton in my customUITableViewCell. It didn't seems to work for me. So this is what I did

-(IBAction) addToCart:(id) sender{
        NSIndexPath *indexPath = [self.tableView indexPathForCell:(UITableViewCell *)
                    [[sender superview] superview]];
    NSLog(@"The row id is %d",  indexPath.row); 
 }

And then through interfacebuilder I associated the action of my button to addToCart IBAction on my table view controller.

link|improve this answer
You mean you associated the action of your button to addToCart IBAction on your custom UITableViewCell, right? – Fulvio Jan 10 '11 at 5:47
That's right. Yes that is what i did – Yogesh Jan 13 '11 at 16:27
feedback

Your Answer

 
or
required, but never shown

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