I have UISplitViewController that I want to be updated from a UIViewController that is housed in a UIPopoverController.
When I select a cell in the master VC (the left table in a split view) connected with the detail VC, I use this:
DetailViewControlleriPad *dvc = [[self.splitViewController viewControllers] objectAtIndex:1];
dvc.detailItem = object;
However, I tried doing this in the popover, but it doesn’t update the detail view. Is there a way to make this work, or can I only update the detail view from the master view?
You could try to call: