I'd like to create a pop-up nav controller to use as my options screen for an app I'm creating. The screen would be accessible from my main menu (which is an SKScene), and when the user taps on "Options" a nav window would simply animate onto the screen (from the bottom or something). Inside would be a table view with various options. Some of the options are simple booleans, and others would push to another nav screen. The user has the options to close the options screen by tapping a "Close" button (which is on the nav screen). I'd like the nav screen to not take up the full view so that the main menu can still be seen underneath.
I know how to create a navigation controller as the root view controller, but I'm just not sure how to go about creating one in the manner I've described above. Any help would be great. Thank you.