I have a navigation controller with a root view controller (UITableViewController). This table view controller has a modal segue to another navigation controller with the UITableViewController as the root view controller. From my modal table view controller I call
[self dismissModalViewControllerAnimated:YES]
to reject the view of the model. I try, before rejecting the modal view, to call my "update" function (which is in the first UITableViewController). I tried to use
[self.parentViewController refresh]
but i guess i mean modal view navigation controller? For this reason, it does not seem to work.
ios objective-c xcode
jrble819
source share