• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

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

[复制链接]
菜鸟教程小白 发表于 2022-12-13 15:48:42 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

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

这是这样安排的:

UILocalNotification n = new UILocalNotification();
n.FireDate = NSDate.FromTimeIntervalSinceNow(360);
n.AlertAction = "My notification";
n.AlertBody = "Notification body";    
UIApplication.SharedApplication.ScheduleLocalNotification(n);

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

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

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

UIApplication.SharedApplication.CancelAllLocalNotifications();

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

UIApplication.SharedApplication.ApplicationIconBadgeNumber = 1;
UIApplication.SharedApplication.ApplicationIconBadgeNumber = 0;

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

foreach(UILocalNotification n in UIApplication.SharedApplication.ScheduledLocalNotifications)
{
    UIApplication.SharedApplication.CancelLocalNotification(n);
}

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

List<UILocalNotifications> notifications = new List<UILocalNotifications>();

...

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

...

foreach(UILocalNotification n in notifications)
{
    UIApplication.SharedApplication.CancelLocalNotification(n);
}

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

Objective-C 或 Swift 的答案也将不胜感激,我可以理解这两种语言中的任何一种。



Best Answer-推荐答案


以下是保存和删除通知的方法 NoticationName 只是任何名称,以便识别要删除的通知

 #pragma mark - Remove Notification

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

        id storedObject = [defaults objectForKey: notificationName];

        if([storedObject isKindOfClass:[NSData class]])
        {
            UILocalNotification* removeNotification = (UILocalNotification*)[NSKeyedUnarchiver unarchiveObjectWithDataNSData *)[defaults objectForKey:notificationType]];

            if(removeNotification)
            {
                [[UIApplication sharedApplication]cancelLocalNotification:removeNotification];
                [defaults removeObjectForKey: notificationName];
            }
            removeNotification = nil;
        }
        else
        {
            [defaults removeObjectForKey: notificationName];
        }


        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 = [NSUserDefaults standardUserDefaults];
        if(![defaults objectForKey:notificationName])
        {
            NSData *data = [NSKeyedArchiver archivedDataWithRootObject:localNotification];
            [defaults setObject:data forKey:notificationName];
            [defaults synchronize];
        }
        else if ([defaults objectForKey:notificationName])
        {

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

            [self removedStoredLocalNotificationAndCancelNotificationFromPanelOfType:notificationName];

            //Store new notification

            NSData *data = [NSKeyedArchiver archivedDataWithRootObject:localNotification];
            [defaults setObject:data forKey:notificationName];
            [defaults synchronize];
        }

    }

关于c# - 如何从通知中心更新/删除通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36349975/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap