Remove menu navigation controller

0

As I remove this gray menu from my webview I think it's something related to navigation controller n I'm sure

    
asked by anonymous 31.10.2018 / 02:09

1 answer

1

This bar refers to NavigationBar which is displayed by default in NavigationController .

To hide this bar, you can simply call the setNavigationBarHidden method of your NavigationController .

self.setNavigationBarHidden(true, animated: true)

Remembering self refers to the instance of your NavigationController.

Apple Documentation that talks about NavigationController

    
07.11.2018 / 13:36