I have a ViewController and another second controller called FlavorsController. My ViewController is my initial view controller. It does not have a navigation controller. I go to the FlavorsController using the following command:
let controller = storyboard?.instantiateViewControllerWithIdentifier("FlavorsController") as! FlavorsController
presentViewController(controller, animated: true, completion: nil)
I have a NavigationController that is set on FlavorsController however it is not showing up.
