I have a UIButton in a custom UITableViewCell. This button triggers an event when clicked.
UIButton
UITableViewCell
[myButton addTarget:self action:@selector(b
You can set tag to button when you are adding the buttons in table view cell. It will be better if you use same indexPath of able view cell. Then from [sender tag] you able to get the indexPath value.