Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UIWebView disable zooming programmatically

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

like image 789
Thizzer Avatar asked Feb 02 '23 20:02

Thizzer


1 Answers

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.

like image 195
Anh Avatar answered Feb 13 '23 07:02

Anh