Remove menu navigation controller

Asked

Viewed 59 times

0

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

inserir a descrição da imagem aqui

1 answer

1


This bar refers to Navigationbar which is displayed by default on Navigationcontroller.

To hide this bar, you can simply call the method setNavigationBarHidden of his Navigationcontroller.

self.setNavigationBarHidden(true, animated: true)

Recalling that the self refers to your Navigationcontroller instance.

Apple documentation about the Navigationcontroller

Browser other questions tagged

You are not signed in. Login or sign up in order to post.