I have a top level UIViewController
that contains a UITableView
. The top level UIViewController
instantiates a NavigationController
, and pushes another UIViewController
onto the NavigationController
. I.E. we push into a new, second view. This second view has the usual "Back" button in the upper left hand corner to allow you to navigate back to the top level view.
Is it possible, when navigating back to the top level view from the second view, to redraw the UITableView
in the top level view, using data generated in the second view, by calling cellForRowAtIndexPath
in the top level and if so, how does one do this?