Is it possible to reload a table view from within a table view cell's controller? I have a custom delete button in my table view cells, and I would like the cell to be deleted from within the cell's delete button's IBAction function.
In my case, it can either be done by allowing the cell to tell the table view to reload, or by allowing the cell to delete itself.
I understand how to reload the table view from within the table view's view controller but not from within the cell. I can't find any syntax for the cell to self-delete or reload its parent table view. Any help would be greatly appreciated.