我安排在用户输入特定地理位置后 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-推荐答案 strong>
以下是保存和删除通知的方法
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/
|