IOS UIWebView Get content actual height, turn off scrolling effect

Source: Internet
Author: User

IOS UIWebView Get content actual height, turn off scrolling effect

Recently do something, will uiwebview nested in the Uiscrollview, by Uiscrollview control rolling, need to make the height of UIWebView with the content of high consistency, online search to code:

Htmlheight = [WebView stringbyevaluatingjavascriptfromstring:@ "Document.body.offsetHeight"];

This code is invalid, the body gets to the offsetheight, for the height of the display area, and therefore modified to:

Htmlheight = [WebView stringbyevaluatingjavascriptfromstring:@ "Document.body.scrollHeight"];

ScrollHeight is the actual height of the Web content.
After that, you naturally need to close the UIWebView scrolling effect, otherwise it will affect the overall page scrolling, the code is as follows:

Uiscrollview *tempview= (Uiscrollview *) [webview.subviews objectatindex:0];  Tempview.scrollenabled=no;

Modifies the content height of the Uiscrollview.

Scrollview.contentsize = Cgsizemake (width, height);

IOS UIWebView Get content actual height, turn off scrolling effect

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.