Possible Duplicate:
Detecting which UIButton was pressed in a UITableView
I have a UIButton added to a UITableViewCell I want this button to call the "didSelectRowAtIndexPath" I already know about calling
[self tableView:self.tableView didSelectRowAtIndexPath:indexpath];
but the problem that I can't get the indexpath and tried the
[self.Tableview indexPathForRowAtPoint:[self.view convertPoint:[sender center] fromView:self.Tableview]]
method but it returns the same CGPoint , Any help ?