Reputation: 21
I want to disable the menu in uiwebview
Upvotes: 2
Views: 1038
Reputation: 705
Add this code in your CSS file :
* { -webkit-user-select: none; }
* { -webkit-touch-callout: none; }
Upvotes: 0
Reputation: 21
We have added this code
Within the file index.html
And it succeeded
Upvotes: 0
Reputation: 586
You can disable touch functions on your html page and also implement your own actions, check out this article http://www.icab.de/blog/2010/07/11/customize-the-contextual-menu-of-uiwebview/
Upvotes: 1