0

在我的背景方法中,我安排了两个通知如下。

- (void)applicationDidEnterBackground:(UIApplication *)application
{
   localNotification = [[UILocalNotification alloc] init]; //Create the localNotification object which is declared in appDelegate.h
    [localNotification setFireDate:[NSDate dateWithTimeIntervalSinceNow:[datePicker countDownDuration]]]; //Set the date when the alert will be launched using the date adding the time the user selected on the timer
    [localNotification setAlertAction:@"Launch"]; //The button's text that launches the application and is shown in the alert
    [localNotification setAlertBody:[alertBodyField text]]; //Set the message in the notification from the textField's text
    [localNotification setHasAction: YES]; //Set that pushing the button will launch the application
    [localNotification setApplicationIconBadgeNumber:[[UIApplication sharedApplication] applicationIconBadgeNumber]+1]; //Set the Application Icon Badge Number of the application's icon to the current Application Icon Badge Number plus 1
    [[UIApplication sharedApplication] scheduleLocalNotification:localNotification]; //Schedule the notification with the system

// * * 通知 2* * *

localNotification2 = [[UILocalNotification alloc] init]; //Create the localNotification object which is declared in appDelegate.h
        [localNotification2 setFireDate:[NSDate dateWithTimeIntervalSinceNow:[datePicker countDownDuration]]]; //Set the date when the alert will be launched using the date adding the time the user selected on the timer
        [localNotification2 setAlertAction:@"Launch"]; //The button's text that launches the application and is shown in the alert
        [localNotification2 setAlertBody:[alertBodyField text]]; //Set the message in the notification from the textField's text
        [localNotification2 setHasAction: YES]; //Set that pushing the button will launch the application
        [localNotification2 setApplicationIconBadgeNumber:[[UIApplication sharedApplication] applicationIconBadgeNumber]+1]; //Set the Application Icon Badge Number of the application's icon to the current Application Icon Badge Number plus 1
        [[UIApplication sharedApplication] scheduleLocalNotification:localNotification2]; //Schedule the notification with the system

}

它适用于发出通知。

问题

我怎样才能检测到哪个通知进来了didreceivenotification method?因为我想根据通知来做不同的任务。

4

2 回答 2

1

您可以设置userInfo 字典

localNotification1 = [[UILocalNotification alloc] init]; 
localNotification1.userInfo = @{ "type" : @1 };
...
localNotification2 = [[UILocalNotification alloc] init]; 
localNotification2.userInfo = @{ "type" : @2 };
...
...
于 2013-06-25T10:07:32.167 回答
0

您可以设置 a 的NSDictionaryinuserInfo属性UILocalNotification

所以你可以这样做......

localNotification1.userInfo = [NSDictionary dictionaryWithObject:@"1" forKey:@"NO"];
localNotification1.userInfo = [NSDictionary dictionaryWithObject:@"2" forKey:@"NO"];

并比较 中的关键“NO” didReceiveNotification

于 2013-06-25T10:10:20.320 回答