リマインダーを保存したいのですが、StartDateComponents を設定すると、常に無効な日付コンポーネントと表示されます。値を設定するためにいくつかの方法(コメント付きのコードを見ることができます)を試みましたが、失敗しました。
EKReminder *reminder = [EKReminder reminderWithEventStore:appDelete.eventStore];
NSCalendar *gregorian = [NSCalendar currentCalendar];//[[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
reminder.title = @"title";
NSString *timeStr = @"20121115070800";
NSDateFormatter *inputFormatter = [[NSDateFormatter alloc] init];
[inputFormatter setCalendar:gregorian];
[inputFormatter setDateFormat:@"yyyyMMddHHmmss"];
[inputFormatter setTimeZone:[NSTimeZone timeZoneWithAbbreviation:@"UTC"]];
NSDate *parseDate = [inputFormatter dateFromString:timeStr];
NSDateComponents *dateComponents = [gregorian components:( NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit )
fromDate:parseDate];
NSDateComponents *timeComponents = [gregorian components:( NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit )
fromDate:parseDate];
NSDateComponents *dateComps = [[NSDateComponents alloc] init];
[dateComps setDay:[dateComponents day]];
[dateComps setMonth:[dateComponents month]];
[dateComps setYear:[dateComponents year]];
[dateComps setHour:[timeComponents hour]];
// Notification will fire in one minute
[dateComps setMinute:[timeComponents minute]];
[dateComps setSecond:[timeComponents second]];
[dateComps setTimeZone:[NSTimeZone localTimeZone]];
reminder.calendar = /*[NSCalendar autoupdatingCurrentCalendar];*/[eventStore defaultCalendarForNewEvents];
reminder.calendar = [EKCalendar calendarWithEventStore:eventStore];
//NSDateComponents *comp = [[NSDateComponents alloc] init];
/*comp.calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
comp.year = [[timeStr substringToIndex:3] integerValue];
comp.month = [[timeStr substringWithRange:NSMakeRange(4,2)] integerValue];
comp.day = [[timeStr substringWithRange:NSMakeRange(6, 2)] integerValue];
comp.hour = [[timeStr substringWithRange:NSMakeRange(8, 2)] integerValue];
comp.minute = [[timeStr substringWithRange:NSMakeRange(10, 2)] integerValue];
comp.second = [[timeStr substringWithRange:NSMakeRange(12, 2)] integerValue];*/
//reminder.startDateComponents = [gregorian components: (NSYearCalendarUnit|NSMonthCalendarUnit|NSDayCalendarUnit/*|NSHourCalendarUnit|NSMinuteCalendarUnit|NSSecondCalendarUnit*/) fromDate:parseDate];
[reminder setStartDateComponents:dateComps];// this line will throw the error:Invalid date component