次のコードを使用しています
UILocalNotification *localNotification = [[UILocalNotification alloc] init];
localNotification.fireDate = fireDate;
localNotification.timeZone = [NSTimeZone defaultTimeZone];
localNotification.alertBody = @"Have you seen your Chiropractic this Month?";
localNotification.alertAction = @"Continue";
localNotification.repeatInterval = NSMonthCalendarUnit;
localNotification.applicationIconBadgeNumber = 0;
// Schedule it with the app
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
[localNotification release];
この通知が毎月 5 日にのみ実行されるように「fireDate」を設定するにはどうすればよいですか。次に、このコードは appDelegate.h にあります。毎月 1 つの通知のみを起動するように設定するにはどうすればよいですか