I have two UIViewController
A
and B
.
ViewController A
is embedded in a UINavigationController
hence automatically inheriting a UINavigationBar
.
While segueing from ViewController B
which is not embedded to A
the UINavigationBar
disappears.
- Why is this happening?
- How can i segue to
A
without embeddingB
to theUINavigationController
?