菜鸟教程小白 发表于 2022-12-12 11:12:47

ios - 在后台检测是否启动了应用程序


                                            <p><p>我想保存应用程序启动的时间,并在它检测到启动事件时将其保存到数据库中。
我想在每次启动应用程序时保存在数据库中。</p>

<p>我尝试使用该服务在 android 中执行此操作,这在 iOS 中是否可行?</p>

<p>我在 <a href="https://gist.github.com/hpique/7554209" rel="noreferrer noopener nofollow">https://gist.github.com/hpique/7554209</a> 中找到了一份公开通知列表。它不存在。</p>

<p>我希望有人可以帮助我。
谢谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><strong>最佳选择:</strong></p>

<p>您只想在应用程序启动时节省时间。所以你可以使用 didFinishLaunchingWithOptions 方法。</p>

<p>您不能在 iOS 的后台使用这种功能。像android一样,您无法运行该服务。一切都被沙盒化了。</p>

<pre><code>- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
   // App Launched, save the time here
   // Put your Code here

    return YES;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在后台检测是否启动了应用程序,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/25199589/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/25199589/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在后台检测是否启动了应用程序