ios - Can I remove items from my UITableView data source and have my UITableView animate the row removal without specifying exact index paths? -
is such thing possible?
basically data source uitableview binary tree. i'm going remove children of 1 of nodes in tree, , want table view automatically animate update, remove rows corresponding these children.
i know can use beginupdates(), deleterowsatindexpaths() , endupdates() finding rows computational annoyance (it's far negligible). there way uitableview reload animation?
this answer https://stackoverflow.com/a/13261683/1077601 suggests can put [self.tableview reloaddata]; inside uiview animation block.
Comments
Post a Comment