受信したローカル通知に応じて、異なる NSLog ステートメントを呼び出す次のコードがあります。
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification{
if (notification == automaticBackupNotification)
{
NSLog(@"Backup notification received.");
}
else
{
NSLog(@"Did receive notification: %@, set for date:%@ .", notification.alertBody, notification.fireDate);
}
}
そして、このメソッドを使用して、別のクラスで通知をスケジュールします。
- (IBAction)automaticValueChanged {
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
if (automaticSwitch.isOn){
[defaults setValue:@"1" forKey:@"automatic"];
//schedule notification
//Set up the local notification
appDelegate.automaticBackupNotification = [[UILocalNotification alloc] init];
if(appDelegate.automaticBackupNotification){
//Repeat the notification according to frequency
if ([backupFrequencyLabel.text isEqualToString:@"Daily"]) {
appDelegate.automaticBackupNotification.repeatInterval = NSDayCalendarUnit;
}
if ([backupFrequencyLabel.text isEqualToString:@"Weekly"]) {
appDelegate.automaticBackupNotification.repeatInterval = NSWeekCalendarUnit;
}
else {
appDelegate.automaticBackupNotification.repeatInterval = NSMonthCalendarUnit;
}
//Set fire date to alert time
NSCalendar *calendar = appDelegate.automaticBackupNotification.repeatCalendar;
if (!calendar) {
calendar = [NSCalendar currentCalendar];
}
NSDateComponents *components = [[NSDateComponents alloc] init];
components.day = 1;
//NSDate *nextFireDate = [calendar dateByAddingComponents:components toDate:[NSDate date] options:0];
//appDelegate.automaticBackupNotification.fireDate = nextFireDate;
appDelegate.automaticBackupNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:20.0];
//Set time zone to default
appDelegate.automaticBackupNotification.timeZone = [NSTimeZone defaultTimeZone];
// schedule notification
UIApplication *app = [UIApplication sharedApplication];
[app scheduleLocalNotification:appDelegate.automaticBackupNotification];
NSLog(@"Backup Fire Date: %@", appDelegate.automaticBackupNotification.fireDate);
}
}
else {
[defaults setValue:@"0" forKey:@"automatic"];
if(appDelegate.automaticBackupNotification){
[[UIApplication sharedApplication] cancelLocalNotification:appDelegate.automaticBackupNotification];
}
}
[defaults synchronize];
}
ただし、アプリケーション デリゲートが通知を受け取ると、条件の「else」部分が起動されます。異なる通知を見分ける方法はありますか? それとも私は何か間違ったことをしていますか?
乾杯、
タイシン