UIWebView高度

发布于 2024-12-11 02:17:57 字数 330 浏览 0 评论 0原文

加载内容后,我试图获取 UIWebView 中内容的高度。我在某处找到了这个例子...

NSInteger height = [[descriptionWebView stringByEvaluatingJavaScriptFromString:
                     @"document.documentElement.scrollHeight"] integerValue];

但这只是给了我 UIWebView 容器的高度。

我试图获取内容的高度,以便我可以扩展 UIWebView 高度以显示所有内容,而无需滚动 Web 视图本身。

I am trying to get the height of the content in my UIWebView after I have loaded the content. I found this example somewhere...

NSInteger height = [[descriptionWebView stringByEvaluatingJavaScriptFromString:
                     @"document.documentElement.scrollHeight"] integerValue];

but this just gives me the height of the UIWebView container.

I am trying to get the height of the content so I can expand the UIWebView height to show all the content with no scrolling side the webview itself.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

如日中天 2024-12-18 02:17:57

您可以像这样使用脚本:

[[descriptionWebView stringByEvaluatingJavaScriptFromString:@"document.body.scrollHeight;"] floatValue];

You can use the script like this:

[[descriptionWebView stringByEvaluatingJavaScriptFromString:@"document.body.scrollHeight;"] floatValue];
如痴如狂 2024-12-18 02:17:57

我会采用一种老套但可靠的方式。首先,我观察 shouldStartLoadWithRequest。这捕获了 location.href= 的变化。然后我只需定义我自己的协议,例如

location.href='debug://width='+$(window).height();

您的 ObjC 代码捕获该协议,检查链接,解析它并取消导航。

对于您自己的内容,您可以只包含它,否则您必须注入必要的 javascript。我自己没有尝试过,但似乎有很多解决方案:

注入UIWebView 中的本地 JavaScript

I would go with a kind of hacky, but reliable way. First, I watch for shouldStartLoadWithRequest. That catches location.href= changes. Then I just define my own protocol, e.g

location.href='debug://width='+$(window).height();

Your ObjC code catches that, checks the link, parses it and cancels the navigation.

For your own content, you can just include it, otherwise you must inject the necessary javascript. I haven't tried that myself, but there appears to be lots of solutions for it:

Inject a local javascript into UIWebView

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文