UIWebView高度
加载内容后,我试图获取 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以像这样使用脚本:
You can use the script like this:
我会采用一种老套但可靠的方式。首先,我观察 shouldStartLoadWithRequest。这捕获了 location.href= 的变化。然后我只需定义我自己的协议,例如
您的 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
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