UIWebview Zooming PDF and Large . Images Zoom By defaults IOS

前端 未结 1 421
一向
一向 2021-01-22 04:46

I am using UIWebView to load PDF and images with zooming functionality . For that I checked webView.scalesPageToFit Property to true and it is workin

相关标签:
1条回答
  • 2021-01-22 05:25

    You can stop scrollView to scroll Vertically and Horizontally using below code. You can also stop bounces.

    webView.scrollView.bounces = false;
    webView.scrollView.isScrollEnabled = false;
    
    0 讨论(0)
提交回复
热议问题