I have read similar questions like this but these codes didn\'t worked for me so please help : I have a table view with some buttons in each cells - This table view is factor fo
You are setting factor button's tag in your cellForRowAt so you can easily get indexpath from your factorViewController.Bill, and from that indexpath you can get your whole cell and you can do whatever you need.
You can get cell like,
let cell = tableView.cellForRowAtIndexPath(indexPath)
you can refer this so post to know how to get indexpath from button click!