I am new to iOS development and I am developing an application which will show and web page in UIWebView. I want to get rid of the default zoom-in and zoom-out functionality of the webview.
|
|
One simply needs to do:
and also disable the pesky pinch to zoom:
|
|||
|
|
|
This is in the Apple Documentation:
Interface Builder Approach:
Code Approach: You can also do it programmatically with this code:
You're also going to want to add:
That will disable the ability to pinch and zoom, since it disables the ability to use multiple fingers in an action, and pinching requires two, obviously! |
||||
|
|
|
set the UIWebView property scalesPageToFit to NO, will disable the user zooming
|
|||
|
|