菜鸟教程小白 发表于 2022-12-13 15:00:36

ios - 保持网络事件指示器旋转


                                            <p><p>我发现有时您可能会在您的 iPhone 应用程序中执行一些要求用户在完成时等待的操作。通常这是与网络相关的事件,但在其他情况下可能不是。在我的例子中,我正在解析来自网络连接的响应,并希望网络事件指示器保持旋转,即使它已经下载了内容。</p>

<p>下面是我正在做的事情:</p>

<p>applicationDelegate.m:</p>

<pre><code>- (void)setNetworkActivityIndicatorVisible:(BOOL)setVisible
{
    static NSInteger NumberOfCallsToSetVisible = 0;
    if (setVisible)
      NumberOfCallsToSetVisible++;
    else
      NumberOfCallsToSetVisible--;

    // Display the indicator as long as our static counter is &gt; 0.
    [ setNetworkActivityIndicatorVisible:(NumberOfCallsToSetVisible &gt; 0)];
}
</code></pre>

<p>otherView.m:</p>

<pre><code>dispatch_queue_t dataLoadingQueue = dispatch_queue_create(&#34;synchronise&#34;, NULL);
    dispatch_async(dataLoadingQueue,
                   ^{
                     ;
                     [LoadDataForGrewal];
                     [ resetCache];
                     [ clearCache];
                     ;
                     [LoadDataForOtherEntities];
                     ;
                   });   
dispatch_release(dataLoadingQueue);
</code></pre>

<p>正如您在上面看到的,我试图在将数据更新到数据库时保留网络指示器,但它不起作用,有什么线索/建议吗?</p>

<p>谢谢
<strong>编辑:</strong></p>

<pre><code>dispatch_queue_t dataLoadingQueue = dispatch_queue_create(&#34;synchronise&#34;, NULL);
    dispatch_async(dataLoadingQueue,
                   ^{
                     dispatch_async(dispatch_get_main_queue(), ^{ ; });
                     [LoadDataForGrewal];
                     [ resetCache];
                     [ clearCache];
                     ;
                     [LoadDataForOtherEntities];
                     dispatch_async(dispatch_get_main_queue(), ^{ ; });
                   });   
dispatch_release(dataLoadingQueue);
</code></pre>

<p>它不起作用我不知道为什么,因为我是 ios 的新手</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>尝试在主队列上调度您的 <code>setNetworkActivityIndi​​catorVisible:</code> 调用,因为 UIApplication 在 UIKit 中并且 UIKit 不是线程安全的。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 保持网络事件指示器旋转,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/11563727/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/11563727/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 保持网络事件指示器旋转