UITableView animations for a "lazy" UI design?
- by donuts
I have a UITableViewController that allows the user to perform editing tasks.
Now, once a user has committed his change, the table view doesn't directly change the model and updates the table, rather "informs" the model what the user wants to do. The model in turn updates accordingly and then posts a notification that it has been changed.
As far…