ios - 调用 presentLocalNotificationNow 时触发 didReceiveLocalNotification
<p><p>当我创建本地通知回调时,<code>didReceiveLocalNotification</code>被触发。当我单击本地通知时,会触发相同的回调。目前我正在通过检查来划分这两个案例</p>
<pre><code>if (.applicationState == UIApplicationStateInactive) {
//this means notification is clicked
}
</code></pre>
<p>但这里的主要问题是,当您在前台滑动通知菜单,然后收到本地通知时,会调用此回调 <code>didReceiveLocalNotification</code>。在这种情况下,我的应用程序会进入这个 if。因此,当应用程序处于非事件状态时,我无法真正区分单击通知和创建本地通知。关于如何解决此问题的任何想法?</p>
<p>这是安排本地通知的代码:</p>
<pre><code>UILocalNotification* localNotification = [ init];
localNotification.alertBody = @"aaaa";
localNotification.alertTitle = @"title";
localNotification.userInfo = myUserInfo;
[ presentLocalNotificationNow:localNotification];
</code></pre>
<p>调用此函数后,我触发了 <code>didReceiveLocalNotification</code> 委托(delegate)。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我必须在我的应用程序中解决完全相同的问题。我在 API 中找不到正式的方法来区分,但这里有一个解决方法。 </p>
<p>在创建本地通知时在 <code>userInfo</code> 中传递当前日期:</p>
<pre><code>localNotification.userInfo = ["alertDate": NSDate()]
</code></pre>
<p>当您处理 <code>didReceiveLocalNotification</code> 时,再次检查当前日期,以确保它不是刚刚触发:</p>
<pre><code>if application.applicationState == .Inactive {
if let alertDate = notification.userInfo?["alertDate"] as? NSDate
where (NSDate()).timeIntervalSinceDate(alertDate) > 0.1 {
// this means notification was initiated by user
}
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 调用 presentLocalNotificationNow 时触发 didReceiveLocalNotification,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/36013693/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/36013693/
</a>
</p>
页:
[1]