菜鸟教程小白 发表于 2022-12-12 17:37:01

ios - 频繁的时间间隔后台提取


                                            <p><p>我开发了两个不同的应用程序</p>

<ol>
<li>App1 - 启用 Healthkit。</li>
<li>App2 -ionic 应用</li>
</ol>

<p>App1 任务:从存储在服务器中的 healthkit 读取数据。 </p>

<p>App2 任务:从服务器检索存储的数据并显示。</p>

<p>我使用 openURLScheme 从 App1 启动 App2。所以App1在后台运行,也应该持续3分钟到一个小时以上。</p>

<p>我尝试了以下场景:</p>

<pre><code>bgTask = self.applicationUI!.beginBackgroundTaskWithName(&#34;MyTask&#34;, expirationHandler: { () -&gt; Void in

      self.applicationUI!.endBackgroundTask(self.bgTask!)

      self.bgTask = UIBackgroundTaskInvalid;
    })

    self.bgTask = UIApplication.sharedApplication().beginBackgroundTaskWithExpirationHandler({ () -&gt; Void in
      self.monitorInBackground()
    })
</code></pre>

<p>我收到错误:<strong>permittedBackgroundDuration: 180.000000 原因:finishTask</strong> </p>

<p>extent后台进程接下来3分钟(IOS 7引入后,IOS 7之前,进程执行时间为10分钟)。</p>

<p><strong>注意:</strong> </p>

<p>我希望使用 APNS 静默通知是可行的。但我期待比 APNS 更好的解决方案。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>Apple 在 <a href="https://developer.apple.com/library/ios/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/BackgroundExecution/BackgroundExecution.html" rel="noreferrer noopener nofollow">background execution in their documentation</a> 上有一个很好的部分.</p>

<p>执行此操作的两种方法是静默通知(如您所建议)和后台获取。</p>

<p>使用静默通知的“优点”是,只要您的用户在线,您就可以相当精确地控制它何时发生。 (无论如何,他们可能必须访问服务器。)但是,是的,这增加了很多复杂性。</p>

<p>后台获取效果很好,但您无法控制<em>何时</em>它发生。这可能是也可能不是问题,具体取决于您的应用的用途。</p>

<p>其他可能有效的选项包括背景音频、位置更新和 VoIP,但它们可能会被您拒绝。</p>

<p>仅仅运行一个后台任务是行不通的——它是为完成任务而不是让它们长时间运行而设计的。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 频繁的时间间隔后台提取,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/34224638/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/34224638/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 频繁的时间间隔后台提取