0

UILocalnotification をキャンセルしたいのですが、通知をキャンセルしてもまだ通知が発生しています。通知をキャンセルするには、appdelegate のデリゲート メソッドを呼び出す必要があるかどうかを知りたかったのですが、使用しているコードは正しく実行されていますが、通知が発生しています。removeObserver メソッドを持つ NSNotification センターを使用して、uilocalnotification をキャンセルする必要があります。

UILocalnotification は、アプリまたはデバイスから通知を起動しますか。

更新 - これは私が通知をスケジュールする方法です

 -(UILocalNotification *)scheduleNotification :(int)remedyID
        {
           NSString *descriptionBody;

           NSInteger frequency;

          UILocalNotification *notif = [[UILocalNotification alloc] init];

            NSLog(@"%d",remedyID);

            descriptionBody =[[self remedyDetailsForRemedyID:remedyID] objectForKey:@"RemedyTxtDic"];
            frequency = [[[self remedyDetailsForRemedyID:remedyID] objectForKey:@"RemedyFrequency"]intValue];

            NSArray *notificationFireDates = [self fireDatesForFrequency:frequency];

            for (NSDate *fireDate in notificationFireDates)
            {
                    notif.timeZone = [NSTimeZone defaultTimeZone];


                    notif.repeatInterval = NSDayCalendarUnit;
                    notif.alertBody = [NSString stringWithString:descriptionBody];
                    notif.alertAction = @"Show me";
                    notif.soundName = UILocalNotificationDefaultSoundName;

                    notif.applicationIconBadgeNumber = 1;

                    notif.fireDate = fireDate;

                    NSDictionary *userDict = [NSDictionary dictionaryWithObjectsAndKeys:notif.alertBody,                                         @"kRemindMeNotificationDataKey",  [NSNumber numberWithInt:remedyID],kRemindMeNotificationRemedyIDKey,
                                              nil];

                    notif.userInfo = userDict;

                    [[UIApplication sharedApplication] scheduleLocalNotification:notif];
                }

                return notif;

    }

通知のキャンセル

 - (void)cancelNotification:(int)remedyId
    {
    NSArray *notifications = [[UIApplication sharedApplication] scheduledLocalNotifications];
    NSLog(@"Cancelling... Before %d",[[[UIApplication sharedApplication]scheduledLocalNotifications]count]);

      for (UILocalNotification *notification in notifications)
      {

      int notifRemedyId = [[notification.userInfo objectForKey:@"kRemindMeNotificationRemedyIDKey"]intValue]; 
        NSLog(@"remedyID  : %d",remedyId);
        NSLog(@"notifyId : %d",notifRemedyId);
        if (remedyId == notifRemedyId) {
            [[UIApplication sharedApplication] cancelLocalNotification:notification];
          }
       }

    NSLog(@"Cancelling... After %d",[[[UIApplication sharedApplication]scheduledLocalNotifications]count]);

     }
4

2 に答える 2

0

scheduleLocalNotificationsは、スケジュールされたすべての通知のリストを提供し、使用します

- (void)cancelLocalNotification:(UILocalNotification *)notification

または、次を使用してすべてをキャンセルできます。

[[UIApplication sharedApplication] cancelAllLocalNotifications];

編集 :

NSString *notifRemedyId = @"notifRemedyId";
UILocalNotification  *localnotif=[[UILocalNotification alloc]init];

NSDictionary *userDict = [NSDictionary dictionaryWithObjectsAndKeys:@"kRemindMeNotificationRemedyIDKey", kRemindMeNotificationRemedyIDKey,YOUR_REMEDYID,@"notifRemedyId",nil];
localnotif.userInfo = userDict;
[[UIApplication sharedApplication] scheduleLocalNotification:localnotif];

次のようにキャンセル:

for (UILocalNotification *aNotif in [[UIApplication sharedApplication] scheduledLocalNotifications]) {
    if ([[aNotif.userInfo objectForKey: kRemindMeNotificationRemedyIDKey] isEqualToString:@"kRemindMeNotificationRemedyIDKey"]) {
        if (remedyId == [[aNotif.userInfo objectForKey: kRemindMeNotificationRemedyIDKey] intValue]) {
            [[UIApplication sharedApplication] cancelLocalNotification:aNotif];
            break;
        }
    }
}

お役に立てば幸いです。

于 2013-05-06T16:48:23.847 に答える