Introduction
I currently have to Storyboards in my project, with one of them being the app's tutorial set in a pageView controller and the second one being the actual app's storyboard. Currently the tutorial only appears on initial app launch (as expected), but I actually have to kill the app, and reopen it for the main app view to appear.
Attempt(s)
I've tried programmatically loading the main app's viewController in the tutorial's pageView controller which does work, but is in no way smooth or elegant. The way I did it is similar to the code I posted here
Question
How would I go about fluidly transitioning between two Storyboard viewControllers? What would be the most appropriate way of transitioning between them? What documentations should I read? Thanks in advance!