Highways Tech
Highways Tech

Reputation: 21

How can I turn off the menu in uiwebview

I want to disable the menu in uiwebview

enter image description here

Upvotes: 2

Views: 1038

Answers (3)

Uzair Bin Nisar
Uzair Bin Nisar

Reputation: 705

Add this code in your CSS file :
* { -webkit-user-select: none; }
* { -webkit-touch-callout: none; }

Upvotes: 0

Highways Tech
Highways Tech

Reputation: 21

We have added this code

Link

Within the file index.html

And it succeeded

  • I apologize my weak English

Upvotes: 0

frytaz
frytaz

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

Related Questions