0
I have a tableview inside my Viewcontroller, and do some actions on each cell like expand and delete.
When I do the deletion I give a Reload in the table loading the data of a remote json, it proceeds with the deletion normally but the cell that passes it gets in the position of the one that was deleted already appears as if it was open without me having clicked on it to open.
And before giving the Reload I am using the following command
self.tableList.removeAllObjects() self.TableAgendment.reloadData()
There is a way to solve this?
Hello Lucas thank you, that’s right cell recycling. Also I was forgetting to reset the list that stored the status of the cells that form opened.
– leedream