I have a button that is part of a custom UITableViewCell. What I want is that when someone clicks the button, that the proper tableView:cellForRowAtIndexPath to be called for that cell.
How do I tie the button to the proper cellForRowAtIndexPath?
Any suggestions and / or code samples will be highly appreciated
You can get the indexPath from the touch event. Modify your buttonTapped method to be this:
and then use something like the following: