菜鸟教程小白 发表于 2022-12-12 16:25:40

ios - 定期从服务器更新 blockerList.json


                                            <p><p>我正在为 iOS 构建一个内容拦截器应用。 </p>

<p>有什么方法可以在后台定期从服务器更新 blockerList.json 文件? </p>

<p>我不知道该怎么做,甚至不知道从哪里开始。 </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>当且仅当后台任务改善了用户体验时,您才能<em>声明</em> iOS 应用具有在“后台”运行的任务。也就是说,即使另一个应用在前台,您的应用也可能在“后台”执行任务。</p>

<p>但是,请对该要求非常挑剔 - 通常情况下,实际上并没有必要这样做。例如,在您的情况下,您可以在您的应用程序移动到前台时加载列表,然后在它处于前台时定期加载。在没有必要的情况下在后台执行操作会白白消耗电池电量 - 这是用户最讨厌的坏习惯之一!</p>

<p>好吧,让我们假设你有充分的理由这样做;)</p>

<p>未声明此类后台任务的 iOS 应用将在停止在前台运行后不久停止执行。为了支持真正需要在后台做某事的应用程序——也就是说,当这个应用程序不在前台时——有几个特定的​​“后台执行模式”(<code>UIBackgroundModes</code>)可以用于<em>声明</em>您的应用想要在后台执行此类任务。</p>

<p>所以,首先是找到适合你的后台任务的“后台执行模式”,并在你的应用的<code>Info.plist</code>中声明。 (在您的情况下,合适的模式是 <code>fetch</code>:<em>“应用程序会定期从网络下载和处理少量内容。”</em>)</p>

<p>接下来是实现任务和必要的钩子(Hook)(嗯,我的意思是 <em>delegates</em>),在你的情况下,你需要实现 <code>application:performFetchWithCompletionHandler</code>。您还需要处理“应用程序状态转换”。</p>

<p>这里有一些指向 Apple 文档的提示:<a href="https://developer.apple.com/library/ios/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/BackgroundExecution/BackgroundExecution.html" rel="noreferrer noopener nofollow">https://developer.apple.com/library/ios/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/BackgroundExecution/BackgroundExecution.html</a> </p>

<p> <a href="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIApplicationDelegate_Protocol/" rel="noreferrer noopener nofollow">https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIApplicationDelegate_Protocol/</a> </p>

<p>这里有一个教程:<a href="http://hayageek.com/ios-background-fetch/" rel="noreferrer noopener nofollow">http://hayageek.com/ios-background-fetch/</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 定期从服务器更新 blockerList.json,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32828818/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32828818/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 定期从服务器更新 blockerList.json