本文介绍了如何保存UIwebview的浏览历史记录的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在开发一个应用程序,该应用程序要求在Web上有显示Wikipedia链接
I am developing an app where there is a requirement under which there is show wikipedia link in Web
视图.在表格视图中还显示了通过Web视图打开的页面的历史记录.我在goo上找到了它
view.and also there is showing history of pages open via web view in a table view.I have find it on goo
gle但找不到任何解决方案.如何解决?
gle but can't find any solution.How can I solve it?
推荐答案
以下代码用于向后和前进到UIWebViewController
Following code for the backward and forward into UIWebViewController
- (IBAction)backButtonClicked:(id)sender {
[webView goBack];
}
- (IBAction)backButtonClicked:(id)sender {
[webView goForward];
}
这篇关于如何保存UIwebview的浏览历史记录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!