Reputation: 16663
Is it possible to disable zooming (pinching or tapping) programmatically for a UIWebView?
Upvotes: 9
Views: 7405
Reputation: 6533
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.
Upvotes: 12