I have a paged, horizontal PageViewController used for a swipe-based interface. In one of these views is a Navigation Controller which segues to a second detail view.
When the second view appears I would like to hide the parent view's Navigation Bar but I don't know how to access any method on the parent view.
I imagine it would look something like this in the detail view
-(void)viewWillAppear {
[parentViewClassNameHere setNavigationBarHidden:YES];
}
How would one go about setting up an accessible method on the parent?