I have a project that starts with a LaunchScreen
and then starts the Storyboard
with a NavigationController
from which the other views hang.
I would be interested in adding a new view between the LaunchScreen
and the Navigation Controller
.
How should I do it?
Add a new ViewControllerScene and check the "Is Initial View Controller" box for that new ViewControllerScene in the Attribute inspector box.
Then make the call to present the Navigation controller
You can also do it with a segue, but without putting any code in the question I can't follow a pattern to give you a more specific answer either.