How can I scroll programmatically to the bottom in a UIWebView?(如何以编程方式滚动到 UIWebView 的底部?)
问题描述
我知道以前有人问过类似的问题,但似乎从未得到回答.我有一个 UIWebView 并按字符串添加一些内容.我使用 UIWebView 是因为我动态地向其中添加了一些图像并且还使用了其他 HTML 功能.此示例代码已简化.
I know a similar question has been asked before but it seemed never been answered. I have a UIWebView and add some content by string. I use UIWebView because I add some images to it dynamically and also use other HTML features. This example code is simplified.
<代码>的NSString * myHtmlString = @ 一些长期测试字符串1234567890 123456789 0123456789 0123456789 0123456789 01234567890 WWWWWWWWWW WWWWWWWWWW WWWYYYYYYY YYYYYYYYYY YYYYYYYYYY YYYYYYYYYY YYYYYYYYYY YYYYYYYYY YYYYYYYWWW WWWWWWWWWW WWWWWWWWWW WWWXXXXXXX XXXXXXXXXX XXXZZZZZZZ THIS IS我想看END";NSString *myPath = [[NSBundle mainBundle] bundlePath];NSURL *myBaseURL = [NSURL fileURLWithPath:myPath];[myWebView loadHTMLString:myHtmlString baseURL:myBaseURL];
我想看到的是字符串的结尾.我可以在那里滚动,没问题.但我想以编程方式去那里.
What I want to see is the end of the string. I can scroll there, no problem. But I want to go there programatically.
推荐答案
这很简单.首先,您需要获取网页的高度:
This is fairly simple. First, you'll need to obtain height of the webpage:
NSInteger height = [[webView stringByEvaluatingJavaScriptFromString:@"document.body.offsetHeight;"] intValue];
现在您将文档的高度存储在 height 变量中.要滚动到底部,您必须再次使用 javascript:
Now you have the height of the document stored in the height variable. To scroll to bottom you have to use javascript again:
NSString* javascript = [NSString stringWithFormat:@"window.scrollBy(0, %d);", height];
[webView stringByEvaluatingJavaScriptFromString:javascript];
当然,您需要在适当的时候给他们打电话.那是
Of course you need to call them in proper moment. That is
– webViewDidFinishLoad:(UIWebView *)webView
你的 webview 委托的方法.
method of your webview delegate.
这篇关于如何以编程方式滚动到 UIWebView 的底部?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何以编程方式滚动到 UIWebView 的底部?
基础教程推荐
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01