Getting selected row from a button in a view based tableview

332 Views Asked by At

I have a view based tableview with a button which displays a popover:

enter image description here

How would I go about setting the selected to the row that holds the pressed button.

I'm using core data, with an array controller. I plan to have the tableview in the popover show related objects.

1

There are 1 best solutions below

2
On

Just add a tag equal to row to every cell button, button.tag = indexPath.row; Then in your button's selector you just call

[self tableView:self.tableView didSelectRowAtIndexPath:[NSIndexPath indexPathForRow:button.tag inSection:0]];