This is in the Apple documentation:
@property(nonatomic) BOOL scalesPageToFit Discussion 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.
Interface Approach:
Make sure that the โScale Pages In Fit" checkbox in the column to the right of the interface designer does not have a checkmark when you click on your webview. This is right upstairs.
You will also need to uncheck the box for โMultiple Tapsโ about halfway down. This will disable compression to increase.
Code Approach:
You can also do this programmatically using this code:
webView.scalesPageToFit = NO;
You will also want to add:
webView.multipleTouchEnabled = NO;
This will disable the ability to pinch and scale, since it disables the ability to use multiple fingers in action, and two are required to clamp, obviously!
source share