Reputation: 419
i have a problem i never had before. Normally i'm creating a
Navigation Controller --> BottomBarNavigationController --> Controller --> Detail Controller logic. The result is that i see a navigation bar at the top. Right now its shown in the editor but not at the emulator.
And here is the resutl at the emulator:
Here is the code i'm pushing to detail viewcontroller:
self.performSegue(withIdentifier: "showChat", sender: self)
Upvotes: 0
Views: 66
Reputation: 5215
If your current View controller is showing the navigation bar but the next controller is not, then these could be the possible cases:
Upvotes: 1