Reputation: 3014
I am using a PageViewController to manage a series of viewControllers which all use a tableview. As the following picture depicts the PageViewController is a container controller for the PageContentViewControllers
After clicking on a tableCell I would like the app to navigate to a detailed view. From what I have read, the proper way to do this is by using a navigationController which is also a container controller.
Through storyboard I have tried putting the NavigationController at both the PageViewController and the PageContentViewController and neither seems to work correctly, I am not sure what other approach I am take.
What is the proper way to combine a PageViewController with a NavigationController if they are both container controllers?
Upvotes: 1
Views: 202
Reputation: 642
Depending on how you want to structure your app:
Upvotes: 1