菜鸟教程小白 发表于 2022-12-13 07:43:35

ios - 无论应用程序状态如何,调用延迟 15 秒的方法


                                            <p><p>我需要每 15 秒调用一次方法,不管它是在 <code>foreground</code> 的任何 ViewController 上,还是在 <code>background</code> 中<code>killed</code>,我需要随时调用它。</p>

<p>我知道我可以使用 <code>NSTimer</code></p> 完成延迟任务

<pre><code>NSTimer* myTimer = [NSTimer scheduledTimerWithTimeInterval: 15.0 target: self
                               selector: @selector(callAfterFifteenSeconds:) userInfo: nil repeats: YES];
</code></pre>

<p>但是,我想知道在哪里实现它,以便它可以满足我的条件。我想我可以在 <code>App Delegate</code> 中使用它,但我需要一个指导才能正确实现它。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在 App Delegate 类中调用它是正确的,但它不适用于以下情况。 </p>

<ul>
<li>如果您的应用从后台被杀死,它将无法工作。</li>
<li>它不会一直处于后台模式。操作系统将在一段时间后停止该进程。 </li>
</ul></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 无论应用程序状态如何,调用延迟 15 秒的方法,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/30635723/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/30635723/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 无论应用程序状态如何,调用延迟 15 秒的方法