I'll explain: I have a UIWebView with its Scrollview. I want that the user can scroll and zoom; but when he presses a button (that I implemented) I want that my scrollview is locked: no scroll, no zoom.
To disable scroll there is this easy function:
webView.scrollView.scrollEnabled = NO;
My question is: is there a similar function to disable zoom? And if not, why in the world there isn't a similar function to disable zoom? And what can I do instead? Thank you all.