How to enable the zoom in / out option in UIWebView?

How to enable the zoom in / out option in UIWebView?

+3
source share
2 answers

This is a standard feature of UIWebView. Use your fingers

+6
source

If you want to do this programmatically, this is the only way I could find to execute it: (specify your sizes, if you wanted, I tried to zoom out after entering in the form field)

UIScrollView *sv = [[webViewView subviews] objectAtIndex:0];
[sv zoomToRect:CGRectMake(0, 0, sv.contentSize.width, sv.contentSize.height) animated:YES];
+2
source

Source: https://habr.com/ru/post/1734373/


All Articles