Trying to [self.parentViewController.tableView reloadData] from a save: method in my DetailViewController but getting my favorite error: request for member ‘tableView’ in something not a structure or union.
Included the header for my RootViewController and casted the parentViewController as a RootViewController to no avail.
What have I botched?
Try:
replacing
MyParentViewControllerClassNamewith your parent vc’s class name.To reference the parent view controller, I have always had to do something like this, e.g.:
You could also try, following this example: