In my App for iPhone/iPad(in Objective C), there is a UiWebView which loads any site(by typing the URL). My UiWebView loads site successfully and it can be scrolled and Zoomed successfully.
But my app requirement is that the UiWebView will ZoomIn more than the specified mimimum Zoom level of UiWebView. My code used for setting my Zoom levals is:
webview.scrollView.minimumZoomScale=0.5;
webview.scrollView.maximumZoomScale=10.0;
webview.scrollView.zoomScale=webview.scrollView.minimumZoomScale;
By seeing the minimumZoomScale=0.5, it sets the Zoom level correctlt. But as soon as I started Zooming it out it Zoomed out the default minimum level and further it can not be Zoomed in at my described Zoom levels.
Please let me know if somebody has any idea or solution.