<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 加载

        时间:2023-11-09
          • <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 加载的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:防止 UIWebView 重新定位输入字段 下一篇:是否可以释放 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'>

                      <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>