使用 swift 以编程方式滚动到 webview 的底部
Posted
技术标签:
【中文标题】使用 swift 以编程方式滚动到 webview 的底部【英文标题】:Scroll to bottom of webview programmatically with swift 【发布时间】:2017-02-06 05:21:36 【问题描述】:我有以下网页视图:
@IBOutlet weak var webView_MyContent: UIWebView!
并像这样加载自定义 html 内容:
self.webView_MyContent.loadHTMLString(html, baseURL: nil)
我想在我的内容加载时以编程方式滚动到页面的最底部。这将如何快速完成?
【问题讨论】:
【参考方案1】:您可以为此使用UIWebView
的scrollView
属性。
func webViewDidFinishLoad(_ webView: UIWebView)
let scrollPoint = CGPoint(x: 0, y: webView.scrollView.contentSize.height - webView.frame.size.height)
webView.scrollView.setContentOffset(scrollPoint, animated: true)//Set false if you doesn't want animation
注意:不要忘记设置delegate
的webView
。
【讨论】:
@user2423476 欢迎朋友 :)【参考方案2】:不适用于 Swift 4 / WKWebView。
相反,我找到了方法webView.scrollToEndOfDocument()
加载完成后向下滚动,你可以把它放到这个函数中:
func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!)
webView.scrollToEndOfDocument(self)
不要忘记导入 WebKit 并让你的类成为你的 WebView 的代表:
// ...
import WebKit
// ...
class ViewController: NSViewController, WKNavigationDelegate
// ...
高级:完成 AJAX 请求后向下滚动
现在,就我而言,我想向下滚动一个使用无限滚动的页面(当几乎到达页面末尾时,它开始加载其他内容)。
这可以通过注入 javascript 并覆盖 XMLHttpRequest 方法来完成:
override func viewDidLoad()
super.viewDidLoad()
// ...
String javascript = String(contentsOfFile: Bundle.main.path(forResource: "script", ofType: "js"))
webView.configuration.userContentController.add(self, name: "injectionHandler")
webView.configuration.userContentController.addUserScript(WKUserScript.init(source: javascript, injectionTime: .atDocumentEnd, forMainFrameOnly: false))
// ...
在你的 Xcode 项目中的文件 script.js
中,你将把这个:
var open = XMLHttpRequest.prototype.open;
XMLHttpRequest.prototype.open = function(method, url, async, user, password)
this.addEventListener("load", function()
var message = "status": this.status, "requestUrl": url, "response": this.responseText, "responseURL": this.responseURL;
webkit.messageHandlers.injectionHandler.postMessage(message);
);
open.apply(this, arguments);
;
要处理此事件(如果您还想捕获 AJAX 响应),您必须添加此方法:
func userContentController(_ userContentController: WKUserContentController, didReceive message: WKScriptMessage)
if message.name == "injectionHandler", let dict = message.body as? Dictionary<String, AnyObject>, let status = dict["status"] as? Int, let response = dict["response"] as? String
if status == 200
webView.scrollToEndOfDocument()
并让你的类扩展 WKScriptMessageHandler:
class ViewController: NSViewController, WKNavigationDelegate, WKScriptMessageHandler
// ...
【讨论】:
问题是关于ios的。这个webView.scrollToEndOfDocument()
属于AppKit
框架,来自macOS 10.14+
。以上是关于使用 swift 以编程方式滚动到 webview 的底部的主要内容,如果未能解决你的问题,请参考以下文章
以编程方式将 UIScrollView 滚动到 Swift 中的子 UIView(子视图)的顶部
swift 以编程方式将UIScrollView滚动到Swift中的子UIView(子视图)的顶部