如何重新加载 UIWebView?

发布于 2024-11-05 06:14:53 字数 66 浏览 0 评论 0原文

我想在点击按钮时重新加载 UIWebView (包括所有标签和图像)。我怎样才能做到这一点?

I want to reload a UIWebView (including all labels and images) when a button is tapped. How can I do that?

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

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

发布评论

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

评论(4

月朦胧 2024-11-12 06:14:53
- (void)viewDidAppear:(BOOL)animated{
    [super viewDidAppear:animated];
    [webView reload];
}

或者

NSURL *theURL = [NSURL URLWithString:@"http://www.OurLovingMother.org/Mobile.aspx"];
    [webView loadRequest:[NSURLRequest requestWithURL:theURL]];
}
- (void)viewDidAppear:(BOOL)animated{
    [super viewDidAppear:animated];
    [webView reload];
}

or

NSURL *theURL = [NSURL URLWithString:@"http://www.OurLovingMother.org/Mobile.aspx"];
    [webView loadRequest:[NSURLRequest requestWithURL:theURL]];
}
淡淡的优雅 2024-11-12 06:14:53
- (IBAction)buttonClicked
{
   [yourWebview reload];
}

希望这有帮助

- (IBAction)buttonClicked
{
   [yourWebview reload];
}

Hope this helps

我一直都在从未离去 2024-11-12 06:14:53

请注意,如果您使用 loadHTMLString: 加载 UIWebView 的内容,则需要再次调用 loadHTMLString: 来重新加载它。在这种情况下,reload 方法不起作用。

Note that if you load the content of your UIWebView using loadHTMLString: then you'll need to call loadHTMLString: again to reload it. In this case the reload method doesn't work.

ペ泪落弦音 2024-11-12 06:14:53

您可以

[webView reload];

在点击处理程序中尝试。

You can try

[webView reload];

in your click handler.

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