<tfoot id='7QnoP'></tfoot>

      <small id='7QnoP'></small><noframes id='7QnoP'>

      • <bdo id='7QnoP'></bdo><ul id='7QnoP'></ul>
      <i id='7QnoP'><tr id='7QnoP'><dt id='7QnoP'><q id='7QnoP'><span id='7QnoP'><b id='7QnoP'><form id='7QnoP'><ins id='7QnoP'></ins><ul id='7QnoP'></ul><sub id='7QnoP'></sub></form><legend id='7QnoP'></legend><bdo id='7QnoP'><pre id='7QnoP'><center id='7QnoP'></center></pre></bdo></b><th id='7QnoP'></th></span></q></dt></tr></i><div id='7QnoP'><tfoot id='7QnoP'></tfoot><dl id='7QnoP'><fieldset id='7QnoP'></fieldset></dl></div>

      <legend id='7QnoP'><style id='7QnoP'><dir id='7QnoP'><q id='7QnoP'></q></dir></style></legend>

        如何立即停止 UIWebView 加载

        How to stop UIWebView loading immediately(如何立即停止 UIWebView 加载)
          • <bdo id='wxW1F'></bdo><ul id='wxW1F'></ul>

            <tfoot id='wxW1F'></tfoot>

              <legend id='wxW1F'><style id='wxW1F'><dir id='wxW1F'><q id='wxW1F'></q></dir></style></legend>

              <small id='wxW1F'></small><noframes id='wxW1F'>

                  <tbody id='wxW1F'></tbody>
                <i id='wxW1F'><tr id='wxW1F'><dt id='wxW1F'><q id='wxW1F'><span id='wxW1F'><b id='wxW1F'><form id='wxW1F'><ins id='wxW1F'></ins><ul id='wxW1F'></ul><sub id='wxW1F'></sub></form><legend id='wxW1F'></legend><bdo id='wxW1F'><pre id='wxW1F'><center id='wxW1F'></center></pre></bdo></b><th id='wxW1F'></th></span></q></dt></tr></i><div id='wxW1F'><tfoot id='wxW1F'></tfoot><dl id='wxW1F'><fieldset id='wxW1F'></fieldset></dl></div>

                • 本文介绍了如何立即停止 UIWebView 加载的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  正如 ios 文档所说,应该使用 [webView stopLoading] 方法来停止 webview 加载任务.

                  As ios documentation says, [webView stopLoading] method should be used in order to stop webview load task.

                  据我所知,这些方法是异步运行的,并且不会立即停止当前处理加载请求.

                  As far as I see, this methods runs asynchronously, and does NOT stop currently processing load request immediately.

                  但是,我需要一种方法来强制 webview 立即停止正在进行的任务,因为加载部分会阻塞主线程,这可能会导致动画闪烁.

                  However, I need a method which will force webview to immediately stop ongoing task, because loading part blocks the main thread, which could result in flicks on animations.

                  那么,有没有办法成功呢?

                  So, is there a way to succeed this?

                  推荐答案

                  这对我有用.

                  if (webText && webText.loading){
                      [webText stopLoading];
                  }
                  
                  webText.delegate=nil;
                  
                  
                  NSURL *url = [NSURL URLWithString:@""];
                  NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
                  [webText loadRequest:requestObj];
                  

                  这篇关于如何立即停止 UIWebView 加载的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  iOS UIWebView app opens link in Safari(iOS UIWebView 应用在 Safari 中打开链接)
                  Close UIWebView using javascript:window.close();(使用 javascript:window.close() 关闭 UIWebView;)
                  NSCachedURLResponse returns object, but UIWebView does not interprets content(NSCachedURLResponse 返回对象,但 UIWebView 不解释内容)
                  Trouble hiding iAd banner and displaying UIWebView in its place(无法隐藏 iAd 横幅并在其位置显示 UIWebView)
                  Knowing when AJAX has loaded in UIWebView(知道何时在 UIWebView 中加载了 AJAX)
                  Load image/logo in existing HTML input field - UIWebView(在现有的 HTML 输入字段中加载图像/徽标 - UIWebView)
                • <tfoot id='GpQYX'></tfoot>
                  • <legend id='GpQYX'><style id='GpQYX'><dir id='GpQYX'><q id='GpQYX'></q></dir></style></legend>
                      <bdo id='GpQYX'></bdo><ul id='GpQYX'></ul>

                      <small id='GpQYX'></small><noframes id='GpQYX'>

                            <tbody id='GpQYX'></tbody>

                            <i id='GpQYX'><tr id='GpQYX'><dt id='GpQYX'><q id='GpQYX'><span id='GpQYX'><b id='GpQYX'><form id='GpQYX'><ins id='GpQYX'></ins><ul id='GpQYX'></ul><sub id='GpQYX'></sub></form><legend id='GpQYX'></legend><bdo id='GpQYX'><pre id='GpQYX'><center id='GpQYX'></center></pre></bdo></b><th id='GpQYX'></th></span></q></dt></tr></i><div id='GpQYX'><tfoot id='GpQYX'></tfoot><dl id='GpQYX'><fieldset id='GpQYX'></fieldset></dl></div>