ios - How to disable the double-tap event in UIWebView -


i'm building custom web app , 1 feature keeps getting in way "double-tap-to-zoom" on uiwebview. i've looked on forum , web , don't see obvious way disable this.

how can disable or ignore double-tap-to-zoom in app?

you can disable zooming putting code in viewdidload method:

mywebview.scalespagetofit = no; 

there approach this. add meta tag head section of webview contents:

<meta name="viewport" content="user-scalable=0"> 

Comments