I asked a question the other day about how rows are added to a UITableView after the table is shown and I was told that the datasource should be updated and insertIndexPaths:withRowAnimation should be called.
My UITable view contains rows of data, when the row is clicked another screen is shown which allows the user to edit the data, once they click done for that screen I want the data in the row to be updated too. I understand calling reloadData is not the right approach here.
Going back a step or two, how does the UITableView view know when it is returned to be the edit screen ? and which event do handle datasource / row updates?
I'm also going to want to add new row (in and add view) in a similar manner, which event do i use then ?