super.tableView.indexPath(for: self)
@IBAction func change(sender: UIButton) {
for case let mycell as MyCustomCell in tableView.visibleCells where mycell.changeButton === sender {
let indexPath = tableView.indexPath(for: myCell)
// ...
}
}