菜鸟教程小白 发表于 2022-12-12 19:53:03

ios - 如何从 iOS 的后台任务中打开应用程序?


                                            <p><p>是否可以在 iOS 中通过后台任务打开应用程序?</p>

<p>我希望我的应用在后台运行,并且无论出于何种原因,我希望它在没有用户输入的情况下重新出现。这可能吗?</p>

<p>在 Android 中,您可以拥有在后台运行的服务,并且您可以随时启动 Activity,该 Activity 将为该 Activity 启动应用程序。</p>

<p>我知道这不会带来良好的用户体验。我还是想知道能不能搞定。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以创建时间偏移为 0 的本地通知计划(例如立即显示警报)。如果用户点击通知,应用程序将被启动。</p>

<p>但否则,您将无法在没有通知的情况下从后台启动到前台。 </p>

<pre><code>    NSDate * theDate = [ dateByAddingTimeInterval:0]; //

    UIApplication* app = ;
    NSArray*    oldNotifications = ;


    // Clear out the old notification before scheduling a new one.
    if ( &gt; 0)
      ;

    // Create a new notification.
    UILocalNotification* alarm = [ init];
    if (alarm)
    {
      alarm.fireDate = theDate;
      alarm.timeZone = ;
      alarm.repeatInterval = 0;
      alarm.soundName = @&#34;sonar&#34;;
      alarm.alertBody = @&#34;Background task complete, tap to show app&#34; ;

      ;
    }
</code></pre>

<p>来自苹果文档:
“通知是应用程序暂停、在后台或未运行以引起用户注意的一种方式。应用程序可以使用本地通知来显示警报、播放声音、标记应用程序的图标,或三者的组合. 例如,一个闹钟应用程序可能使用本地通知来播放闹钟声音并显示警报以禁用警报。当通知传递给用户时,用户必须决定该信息是否需要将应用程序带回前台.(如果应用程序已经在前台运行,本地通知会悄悄地传递给应用程序而不是用户。)"</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何从 iOS 的后台任务中打开应用程序?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22213907/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22213907/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何从 iOS 的后台任务中打开应用程序?