菜鸟教程小白 发表于 2022-12-13 04:12:29

ios - 由于 iOS 7, View 没有出现


                                            <p><p>我在装有 iOS 7 的 iPhone 上试用了我的应用程序,除了一件事外,一切都运行良好。在 iOS 6 版本上,当我执行以下代码时,加载 View (带有事件指示器)在加载结束时出现并消失。在 iOS 7 上, View 在加载过程中根本不会出现。</p>

<pre><code>self.loadingView.alpha = 1.0;
;
</code></pre>

<p>AccessServices 方法:</p>

<pre><code>- (void)accessServices {
   // Getting JSON stuff
   // The code is OK, I just don&#39;t copy/paste it here

   self.loadingView.alpha = 0.0;
}
</code></pre>

<p>会发生什么?这是 iOS 7 的错误吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我没想到上述代码的行为会发生变化,尽管它可能无法按您期望的方式工作我并不感到惊讶。如果您在主队列上执行 JSON 操作,您的代码将依赖于 UI 更新何时发生的特性,而不是使其显式化。 </p>

<p>您可能希望将 JSON 代码显式分派(dispatch)到后台队列,然后将最终的 UI 更新分派(dispatch)回主队列。这样的标准模式是:</p>

<pre><code>self.loadingView.alpha = 1.0;

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

    // Getting JSON stuff
    // The code is OK, I just don&#39;t copy/paste it here

    dispatch_async(dispatch_get_main_queue(), ^{
      self.loadingView.alpha = 0.0;
    });
});
</code></pre>

<p>您可以使用 GCD(如上)或操作队列,或其他任何东西。但想法是一样的,UI 更新应该发生在主队列上,而任何远程计算昂贵或缓慢的事情都应该发生在后台队列上。</p>

<p>无论 iOS 版本如何,此模式都应该有效。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 由于 iOS 7, View 没有出现,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/18871908/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/18871908/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 由于 iOS 7, View 没有出现