菜鸟教程小白 发表于 2022-12-12 15:38:35

iphone - iOS - UILocalNotification 不会触发(在后台设置时)


                                            <p><p>我有这个代码来安排 <code>UILocalNotification</code>:</p>

<pre><code>UILocalNotification* localNotification = [ init];
localNotification.userInfo = @{PLANNED_EVENT_ID : @&#34;some id&#34;};
localNotification.fireDate = someStartDate;
localNotification.alertBody = @&#34;Some text&#34;;
localNotification.timeZone = ;
localNotification.soundName = UILocalNotificationDefaultSoundName;
[ scheduleLocalNotification:localNotification];
</code></pre>

<p>当我在应用程序处于前台时设置上述方法时,此方法按预期工作,但如果我在应用程序处于后台时(按下主页按钮)使用此代码,那么它根本不会被触发?</p>

<p>为什么这不起作用?我怎样才能得到我需要的结果?当应用程序在后台时,我需要能够使用此代码。</p>

<p>谢谢!</p>

<p>为了更清楚,在我的 <code>AppDelegate</code> 我有方法</p>

<p><code>- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)</code></p>

<p>当我在此方法中收到第一个通知时(有效,它被安排在 ViewController 中),我以相同的方式安排另一个通知(从现在开始 1 分钟)。所以我尝试将应用程序放在前台,然后它可以工作,但是当我将它放在后台时,它没有。</p>

<p>在模拟器上测试过。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>方法</p>

<pre><code>- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)
</code></pre>

<p>在向用户显示本地通知后打开应用程序时调用<strong>并且</strong>用户已从通知中打开应用程序。如果用户没有从通知中打开应用程序,则不会调用此方法。因此,您的下一个通知永远不会真正添加。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - iOS - UILocalNotification 不会触发(在后台设置时),我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19391223/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19391223/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - iOS - UILocalNotification 不会触发(在后台设置时)