菜鸟教程小白 发表于 2022-12-13 15:48:42

c# - 如何从通知中心更新/删除通知?


                                            <p><p>我安排在用户输入特定地理位置后 6 分钟发出本地通知,前提是他们仍在该位置内。</p>

<p>这是这样安排的:</p>

<pre><code>UILocalNotification n = new UILocalNotification();
n.FireDate = NSDate.FromTimeIntervalSinceNow(360);
n.AlertAction = &#34;My notification&#34;;
n.AlertBody = &#34;Notification body&#34;;   
UIApplication.SharedApplication.ScheduleLocalNotification(n);
</code></pre>

<p>在某些情况下,某些地理位置会重叠,用户会收到不止一个通知。发生这种情况时,我希望能够更新通知中心的通知以反射(reflect)这一点。</p>

<p>我被告知在 iOS9 中无法直接更新通知中心,因此为了实现我想要的效果,我需要删除通知并将其替换为新通知。</p>

<p>通过几个小时的谷歌搜索,我发现了以下方法,所有这些方法都不起作用。</p>

<pre><code>UIApplication.SharedApplication.CancelAllLocalNotifications();
</code></pre>

<p>此函数在当前版本的 iOS 中似乎没有任何作用。</p>

<pre><code>UIApplication.SharedApplication.ApplicationIconBadgeNumber = 1;
UIApplication.SharedApplication.ApplicationIconBadgeNumber = 0;
</code></pre>

<p>有人提到必须先设置角标(Badge)编号,然后将其设为零才能从通知中心删除通知。这也没有效果。</p>

<pre><code>foreach(UILocalNotification n in UIApplication.SharedApplication.ScheduledLocalNotifications)
{
    UIApplication.SharedApplication.CancelLocalNotification(n);
}
</code></pre>

<p>对于一些发现 <code>CancelAllNotifications</code> 不起作用的人尝试了上述方法。这似乎也没有效果。如果有帮助,我尝试在通知中心显示通知时记录 <code>ScheduledLocalNotifications</code> 计数,但数组返回为空。</p>

<pre><code>List&lt;UILocalNotifications&gt; notifications = new List&lt;UILocalNotifications&gt;();

...

UIApplication.SharedApplication.ScheduleLocalNotification(n);
notifications.Add(n);

...

foreach(UILocalNotification n in notifications)
{
    UIApplication.SharedApplication.CancelLocalNotification(n);
}
</code></pre>

<p>另一位用户建议保留原始通知,然后在以后需要时使用它们取消它们。我又一次没有运气。</p>

<p>Objective-C 或 Swift 的答案也将不胜感激,我可以理解这两种语言中的任何一种。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>以下是保存和删除通知的方法<bar/>
NoticationName 只是任何名称,以便识别要删除的通知</p> <pre><code> #pragma mark - Remove Notification

    - (void) removedStoredLocalNotificationAndCancelNotificationFromPanelOfType: (NSString*) notificationName
    {
      NSUserDefaults *defaults = ;

      id storedObject = ;

      if(])
      {
            UILocalNotification* removeNotification = (UILocalNotification*)];

            if(removeNotification)
            {
                [cancelLocalNotification:removeNotification];
                ;
            }
            removeNotification = nil;
      }
      else
      {
            ;
      }


      defaults = nil;

    }

    #pragma mark -Save notification
    - (void) saveNewLocalNotificationInUserDefaultsOfType: (NSString*) notificationName withLocalNotification: (UILocalNotification*)localNotification
    {

      //************* Check if previous Notification is Present. If YES remove it and show new notification with storing new data in userDefaults**************//
      NSUserDefaults *defaults = ;
      if(!)
      {
            NSData *data = ;
            ;
            ;
      }
      else if ()
      {

            // Remove previous notification
            //Check if any observation notification is present.If YES remove it from user defaults if stored and cancel local notification

            ;

            //Store new notification

            NSData *data = ;
            ;
            ;
      }

    }
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于c# - 如何从通知中心更新/删除通知?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/36349975/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/36349975/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: c# - 如何从通知中心更新/删除通知?