我有一些代码,我用来排序日历日期,看起来像这样:
#if !(TARGET_IPHONE_SIMULATOR)
NSString *formatString = [NSDateFormatter dateFormatFromTemplate:@"HH:mm dd MMM yyyy" options:0
locale:[NSLocale currentLocale]];
[fmt setDateFormat:formatString];
#else
[fmt setDateFormat:@"HH:mm dd MMM yyyy"];
#endif
如果我在模拟器中运行它,一切都没问题。如果我在设备上运行它,我会收到这个讽刺的调试消息。
2012-09-1922:40:13.972 APPNAME [4923.907] * -[ _ _ NSCFCalendar Date 不能为空
说真的,你觉得 你以为那个手术就意味着没有约会吗?
现在已经避免了一个例外。
其中一些错误将是 举报,那么进一步的违规行为只会 静默地做任何随机的事情从零结果 回溯这次发生的地方(一些帧可能丢失 由于编译器优化) :
你不得不嘲笑它,但我不知道我的 dateFormatFromTemplate:
代码出了什么问题。如果你能帮忙,我将不胜感激。
运行 Xcode V 4.5 btw
更新:
回溯:
0 CoreFoundation 0x39ff0e55 + 84
1 片名0x00040be1 - [ MeetingsViewController dateAtBeginningOfDayForDate: ] + 140
因此,我想我的 dateAtBeginningOfDayForDate
方法出了问题,它看起来是这样的:
/*
Break down a given NSDate to its bare components for sorting
*/
- (NSDate *)dateAtBeginningOfDayForDate:(NSDate *)inputDate
{
// Use the user's current calendar and time zone
NSCalendar *calendar = [NSCalendar currentCalendar];
NSTimeZone *timeZone = [NSTimeZone systemTimeZone];
[calendar setTimeZone:timeZone];
// Selectively convert the date components (year, month, day) of the input date
NSDateComponents *dateComps = [calendar components:NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit fromDate:inputDate];
// Set the time components manually
[dateComps setHour:0];
[dateComps setMinute:0];
[dateComps setSecond:0];
// Convert back
NSDate *beginningOfDay = [calendar dateFromComponents:dateComps];
return beginningOfDay;
}
我使用这种方法将给定的 NSDate 分解为它的核心组件,以便能够更有效地对它们进行排序。然而,我的应用程序必须是国际化的,这就是使用 NSLocale
格式化日期输出背后的原因。从什么似乎我需要改变我的 dateAtBeginningOfDayForDate
工作以及国际。