I have a
UINavigationController
as my root controller, but then I segue from one view controller to another
UINavigationController
.
But when segueing from one view controller which is embedded within a UINavigationController to another UINavigationController the push segue comes from the bottom, presuming it is segueing as a popover. I tried using a show detail segue but still not luck.
Why is this occurring and how can I segue from one to the other using a push/replace segue ?
PS: Is this happening because the
UINavigationControllers
conflict and overrides the segue as a
popover
? The reason I am using two separate navigation controllers is because the style from the previous view overrides the style of the detail view, i posted a separate question about that
Cannot change style of UINavigationBar when using scrollViewDidScroll on separate View Controller