Thizzer
Thizzer

Reputation: 16663

UIWebView disable zooming programmatically

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

Upvotes: 9

Views: 7405

Answers (1)

Anh
Anh

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

Related Questions