我已经查看了相关问题的答案,他们的解决方案没有奏效。我对从 NSDateComponents 和 NSDateFormatter 收到的输出感到非常困惑(以及 MTDates 以便于使用,但我尝试绕过它以获得不同的结果但无济于事)。
这是 UI 相关部分的链接(来自模拟器): http: //grab.by/rFbQ
以及与问题相关的日志:
2013-10-31 23:58:03.407 Application[22530:70b] Date 2013-11-01 04:58:03 +0000
2013-10-31 23:58:03.408 Application[22530:70b] Formatted Date Oct 31, 2013, 11:58:03 PM
2013-10-31 23:58:03.408 Application[22530:70b] Hours 17
2013-10-31 23:58:03.408 Application[22530:70b] Minutes 9
用于获取数字的代码:
[NSDate mt_setTimeZone:[NSTimeZone localTimeZone]];
NSDate *current = [NSDate date];
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateStyle:NSDateFormatterMediumStyle];
[formatter setTimeStyle:NSDateFormatterMediumStyle];
[formatter setTimeZone:[NSTimeZone localTimeZone]];
NSCalendar *cal = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
[cal setTimeZone:[NSTimeZone localTimeZone]];
NSDateComponents *comp = [cal components:(NSHourCalendarUnit | NSMinuteCalendarUnit) fromDate:current];
NSUInteger hours = comp.hour;
NSUInteger minutes = ceil([current mt_minuteOfHour] / 6);
NSLog(@"Date %@", current);
NSLog(@"Formatted Date %@", [formatter stringFromDate:current]);
NSLog(@"Hours %lx", hours);
NSLog(@"Minutes %lx", minutes);
self.dateLabel.text = [formatter stringFromDate:current];
self.timeLabel.text = [NSString stringWithFormat:@"%lx.%lx", hours, minutes];
我不知道您是否可以从上面的输出中看出,但格式化的日期(对于正确的时区)将小时显示为“11”(“11:58:03”),这让我感到困惑,甚至设置时区为NSCalendar
并且NSDateFormatter
对于相同的NSTimeZone
( localTimeZone
) 我得到“17”作为当前时间。
我还应该提到我正在使用MTDates来增加日期操作,但是在我包含这个库之前遇到了这个问题(希望它的包含可能会以某种方式使这些结果更加理智)。话虽如此,我也尝试将我获取自己的组件的部分替换为:
NSUInteger hours = [current mt_hourOfDay];
不幸的是,这也返回“17”。我希望它返回“23”,但会对“11”感到满意,然后可以弄清楚将其转换为 24 比例。