毎日午前 8:00 に 30 日間連続して UILocalNotificaion をスケジュールし、その機能を 1 つの UILocationNotification インスタンスのみで実装したいと考えています。ローカル通知をスケジュールするコードは次のとおりです。
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"HH:mm"];
NSDate *date = [[NSDate alloc] init];
date = [formatter dateFromString:@"08:00"];
UILocalNotification *localNotification = [[UILocalNotification alloc] init];
localNotification.fireDate = date;
localNotification.timeZone=[NSTimeZone defaultTimeZone];
localNotification.alertBody = @"You just received a local notification";
localNotification.alertAction = @"View Details";
localNotification.soundName = UILocalNotificationDefaultSoundName;
localNotification.repeatInterval = NSDayCalendarUnit;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
[formatter release];
[date release];
午前 8 時に毎日の通知が永久に送信されますが、連続 30 日間のみ通知を受け取りたいです。最も簡単な解決策は、30 個の UILocalNotifications を起動することですが、1 つの UILocalNotification インスタンスでそれを実行したいと考えています。どうやってやるの?助けてください。