I have a push Segue with identifier "LoginSegue" that is meant to transition from "Login View Controller" to "View Controller."
Here is my storyboard:
and here is the Segue:
After a user successfully logs in, I call the following from within the LoginViewController:
performSegueWithIdentifier("LoginSegue", sender: self)
in order to transition from the "Login View Controller" to the "View Controller."
I would expect this transition to occur from right-to-left as it is a Push segue, but for some reason it happens from bottom-to-top.
How can I correct this behavior?
