How can I enable zoom in on UIWebView which inside the UIScrollView?

75,930

Solution 1

You MUST set scalesPageToFit=YES for any pinching and zooming to work on a UIWebView

Solution 2

OK, you need to do both the above, but also the following. I had a web view in the main view, and that didn't work.

  1. As above, you first have to put a UIScrollView in the main view, then put the web view in the scroll view.
  2. As above, implement <UIScrollViewDelegate> in your view controller, drag the scroll view delegate to the view controller in Interface Builder, and implement the viewForZoomingInScrollView method. This must return the pointer to the UIScrollView (return myScrollView).
  3. I created IBOutlet properties for both the web view and the scroll view - link them in the NIB to your view controller.
  4. On the Scroll View, go to the Attributes Inspector, set your Max and Min zoom factors (I set 0.5 to 5.0, that works well).
  5. On the Web View, in the Attributes Inspector:
  6. In the Web View section, select Scales Pages To Fit
  7. In the View section, select for Mode, "Top Left"
  8. In the View section at the bottom, check off User Interaction Enabled, and Multiple Touch Enabled

Solution 3

With JavaScript you can control the zoom level, although the oly solution I have found doesn't look smooth.

Say you have in <head>:

<meta id="vp" name="viewport" content="width=768,initial-scale=1.0">

To zoom to 4x, and still allow the user to change zoom, change the content twice:

var vp = document.getElementById('vp');
vp.content = "width=767,minimum-scale=4.0,maximum-scale=4.0,user-scalable=yes";
vp.content = "width=768,minimum-scale=0.25,maximum-scale=10.0,user-scalable=yes";

Toggling the width is very important - otherwise Mobile Safari has serious repainting bugs (due to over-optimisation).

You cannot just set initial-scale again - it is ignored the second time.

Solution 4

You need to implement the viewForZoomingInScrollView method in your controller, or zooming won't do anything. (I don't really know why this should be needed, but there you go.)

For detailed information, see http://developer.apple.com/iphone/library/documentation/WindowsViews/Conceptual/UIScrollView_pg/ZoomZoom/ZoomZoom.html.

Share:
75,930
calendarw
Author by

calendarw

Updated on June 03, 2020

Comments

  • calendarw
    calendarw almost 4 years

    I have a UIWebView which inside a UIScrollView (scrollview contain another component)

    I tried to enable multitouch both on Interface Builder or Programmatic on UIWebView but it still cannot zoom for html, do I need to handle both zoom in at the UIScrollView and UIWebView? Or anything I haven't to set?

  • Dan F
    Dan F about 13 years
    This is good, except now my page is being scaled down to fit within the view. I am creating an html page in code to display, and I want it to remain at the previous size, but allow my users to zoom in with pinch zooming
  • vocaro
    vocaro about 13 years
    Add the following meta tag to your HTML document's head: <meta name='viewport' content='initial-scale=1.0,maximum-scale=10.0'/>
  • William Jockusch
    William Jockusch over 12 years
    How can I do the same thing with an external website? That is, I set the initial zoom, and user zooming is enabled after that.
  • Nishant B
    Nishant B over 12 years
    Hi, It all working fine Paging, ZoomIn/Out, etc... But I have one issue in that. My app working in both orientation (Portrait & Landscape). Now, in portrait, I have to swipe the page 2-3 times then I am able to go next page. But in landscape, it's working fine. I have take webview inside scrollview and scrollview have paging. But when I tried to swipe the scroll to go to next page, then I have to swipe it 2 to 3 times for go to next page (in portrait mode). Any idea regarding same. Thanks for the help.
  • AL̲̳I
    AL̲̳I about 10 years
    perfect answer...Thanks
  • jose920405
    jose920405 over 8 years
    Work's but this cause problems with other things.. for example stackoverflow.com/questions/33617217/…