Search code examples
xcodeiosuiwebview

UIWebView disable zooming programmatically


Is it possible to disable zooming (pinching or tapping) programmatically for a UIWebView?


Solution

  • Just set scalesPageToFit to NO and you're done.

    If YES, the webpage is scaled to fit and the user can zoom in and zoom out. If NO, user zooming is disabled. The default value is NO.