Is such a thing possible?
Basically the data source for my UITableView
is a binary tree. I'm going to remove the children of one of the nodes in the tree, and I want the table view to automatically animate the update, which will remove the rows corresponding to these children.
I know I can use beginUpdates()
, deleteRowsAtIndexPaths()
and endUpdates()
but finding all those rows is a computational annoyance (it's far from negligible). Is there any way for the UITableView
to just reload with an animation?