Is there a way to control the navigation bar in WatchOS similar to how we can control it in iOS using UINavigationController?
What I am trying to do is hide the navigation bar for certain WKInterfaceControllers and show it for others. What I am able to do so far is hiding the navigation bar for the entire WatchOS app.
What do you exactly mean by hiding
NavigationBarforWKInterfaceController?As we know in Apple Watch, there are two ways to navigate between Interface Controllers:
Pushes another Interface Controller on the screen
Displays another Interface Controller on top of the current Interface Controller.
The Apple Documentation says that
I wrote this to came to the conclusion that you want to remove the
Back Button, correct? If so, you may try this:In the
DestinationInterfaceController, you should put the identifier of the destination Interface Controller.