我有这个本地通知代码,我有一个 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];
    }
}
  • 在创建本地通知时提供用户信息(这是一个键值对)。
  • 迭代通知(它包含所有本地通知)并比较已知键的值。在上面的示例中,我使用 EndDate 作为键,使用 CompareString 作为值。

  • 它与我一起工作得很好。

    干杯..

    关于iphone - 取消特定的 UILocalNotification,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7186236/

    10-17 02:16