I have a tableview inside my ViewController, and I do some actions in each cell like expand and delete.
When I do the deletion I give a reload to the table loading the data of a remote json, it proceeds with the deletion normally however the cell that passes to is in the position of the one that was deleted already appears as if it were open without I clicked it to open.
And before giving the reload I'm using the following command
self.tableList.removeAllObjects () self.TableAgendamento.reloadData ()
Is there a way to resolve this?