同步 UIWebView stopLoading 立即执行
有什么方法可以停止 UIWebView 的加载(使用 stopLoading)并在调用它时将控制权返回给用户吗?我知道运行循环仍然需要结束其循环,但我只是想要与手动停止加载(使用按钮)时获得的效果相同。
非常感谢任何帮助。
Is there any way I can stop the loading of the UIWebView (using stopLoading) and return control to the user right at that moment when I call it? I understand the run loop still needs to end its cycle but I simply want the same effect I am getting when I stop the loading manually (with a button).
Any help is greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不太确定你的意思,但是使用performSelectorOnMainThread:withObject:waitUntilDone:对你来说有意义吗?
更多详细信息请参见 NSObject 类参考。
Not quite sure what you mean, but would it make sense for you to use
performSelectorOnMainThread:withObject:waitUntilDone:
?More details in NSObject class reference.