如何重新加载 UIWebView?
我想在点击按钮时重新加载 UIWebView
(包括所有标签和图像)。我怎样才能做到这一点?
I want to reload a UIWebView
(including all labels and images) when a button is tapped. How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
或者
or
希望这有帮助
Hope this helps
请注意,如果您使用
loadHTMLString:
加载UIWebView
的内容,则需要再次调用loadHTMLString:
来重新加载它。在这种情况下,reload
方法不起作用。Note that if you load the content of your
UIWebView
usingloadHTMLString:
then you'll need to callloadHTMLString:
again to reload it. In this case thereload
method doesn't work.您可以
在点击处理程序中尝试。
You can try
in your click handler.