我怎样才能只在使用 UIWebView 访问本地HTML 时重新加载它?

发布于 2024-12-09 12:20:26 字数 500 浏览 2 评论 0原文

我正在使用 xcode 制作 iPhone 应用程序,但每当使用后退按钮访问主页 (localHTML) 时,列表项都会保持突出显示状态。我的解决方案是每当访问 localHTML 时刷新页面。任何人都可以建议一种简单的方法来检测 url 何时与 localHTML 匹配(我应该使用 isFileURL 吗?)感谢您的帮助。另外,该列表是用 javascript 制作的,否则我将使用 deselectRowAtIndexPath。

这是我想出来的,但它不起作用,

-(IBAction)backbutton{
[webView goBack];
NSString *currentURL = webView.request.URL.absoluteString;
if (currentURL = "whatever the file path is") {
[webView reload];
}

这是实现这一目标的有效方法吗?有没有办法使用 nslog 获取我的 localhtml 文件路径?

I'm making an iPhone app using xcode, but whenever the homepage (localHTML) is visited using the backbutton, the list item stays highlighted. My solution to this is to refresh the page whenever the localHTML is visited. Can anyone suggest an easy way of detecting when the url matches localHTML (should I use isFileURL?) Thanks for your help. Also, the list was made with javascript or else I would use deselectRowAtIndexPath.

This is what I came up with, but it doesn't work

-(IBAction)backbutton{
[webView goBack];
NSString *currentURL = webView.request.URL.absoluteString;
if (currentURL = "whatever the file path is") {
[webView reload];
}

is this a valid way to accomplish this? is there a way to get my localhtml's file path by using nslog?

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

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

发布评论

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

评论(1

穿透光 2024-12-16 12:20:27

你有没有尝试过回去后延迟一下,然后刷新?
例如。 现在使用 nstimer有

[webView goBack];

延迟

之后

[webView reload];

Have you tried having a delay after going back, then refreshing?
eg. after

[webView goBack];

have a delay now using nstimer

then

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