我有这个本地通知代码,我有一个 scheduleNotification 和 clearNotification 使用我自己的方法。这些是代码:
- (void)clearNotification {
[[UIApplication sharedApplication] cancelAllLocalNotifications];
}
- (void)scheduleNotification {
[reminderText resignFirstResponder];
[[UIApplication sharedApplication] cancelAllLocalNotifications];
Class cls = NSClassFromString(@"UILocalNotification");
if (cls != nil) {
UILocalNotification *notif = [[cls alloc] init];
notif.fireDate = [[datePicker date] dateByAddingTimeInterval:-30];
notif.timeZone = [NSTimeZone defaultTimeZone];
notif.alertBody = @"Evaluation Planner";
notif.alertAction = @"Details";
notif.soundName = UILocalNotificationDefaultSoundName;
notif.applicationIconBadgeNumber = 1;
NSDictionary *userDict = [NSDictionary dictionaryWithObject:reminderText.text forKey:kRemindMeNotificationDataKey];
notif.userInfo = userDict;
[[UIApplication sharedApplication] scheduleLocalNotification:notif];
[notif release];
}
}
这些代码运行良好,但现在我想知道如何知道它将删除哪个通知对象。我想为通知创建一个 ID,这意味着一个 ID 相当于一个通知。但我不知道我应该在哪个部分这样做。另外,我需要找到一种方法将所有这些都包含在 plist 中。
希望有人可以帮助我。谢谢。
最佳答案
NSArray *notifications = [[UIApplication sharedApplication] scheduledLocalNotifications];
for (UILocalNotification *not in notifications) {
NSString *dateString=[not.userInfo valueForKey:@"EndDate"];
if([dateString isEqualToString:@"CompareString"])
{
[[UIApplication sharedApplication] cancelLocalNotification:not];
}
}
它与我一起工作得很好。
干杯..
关于iphone - 取消特定的 UILocalNotification,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7186236/