As I remove this gray menu from my webview I think it's something related to navigation controller n I'm sure
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.