On "webViewDidFinishLoad:(UIWebView *)webView", you can get the height of document by this
int height = [[webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.clientHeight;"] intValue];
Then you can readjust your UIWebView frame
Ho Ha
2010-07-23 16:02:39