I’m creating an interactive touch book in iOS. I’d like to know what the best controller is to use for books. (e.g. UIViewController, NavigationController, etc.). I’d prefer to stay with storyboard options.
And secondly what is the best way to handle pages? A separate ViewController for each page? a separate view for each page?
UIPageViewController
From the docs:
As for your second question, yes it is easiest to manage each page as a view controller since UIPageViewController is a container view controller and it holds an array of view controllers.