views:

16

answers:

1

Hello all,

I am loading an html file in to an UIWebView. Now I want to know that is there any way I can get height of the contents being load in the UIWebView?

Thanks in advance

+1  A: 
[[webView stringByEvaluatingJavaScriptFromString:@"document.body.offsetHeight"] integerValue];

Try this site for document.body.offsetHeight alternatives. The best choice probably depends on your page, what you want to measure and when you are measuring.

drawnonward
Thanks for reply
Ideveloper