iPhone UIWebView高度

时间:2009-08-25 13:50:04

标签: iphone uiwebview

有人知道这个解决方案是否可以被Apple提交的应用程序批准?

- (void)webViewDidFinishLoad:(UIWebView *)webView
{
    CGFloat webViewHeight = 0.0f;
    if (self.subviews.count > 0) {
        UIView *scrollerView = [self.subviews objectAtIndex:0];
        if (scrollerView.subviews.count > 0) {
            UIView *webDocView = scrollerView.subviews.lastObject;
            if ([webDocView isKindOfClass:[NSClassFromString(@"UIWebDocumentView") class]])
                webViewHeight = webDocView.frame.size.height;
        }
    }
}

感谢。 哈密​​。

2 个答案:

答案 0 :(得分:7)

实现UIWebViewDidfinishLoad委托方法并使用以下代码

嗨,

您可以使用以下方法解决问题。

获取pageOffset:

int pageYOffset = [[webViewObj stringByEvaluatingJavaScriptFromString:@“window.pageYOffset”] intValue];

获取网页的总滚动高度:

int scrollHeight = [[webViewObj stringByEvaluatingJavaScriptFromString:@“document.documentElement.scrollHeight”] intValue];

用于将网页滚动到特定偏移量:

[webViewObj stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@“document.body.scrollTop =%d”,scrollHeight]];

答案 1 :(得分:0)

为什么不使用-stringByEvaluatingJavaScriptFromString:来使用javascript调整网页大小,而不是搞乱可能会改变和破坏应用的私有类?