objective-c – 当前日期和时间 – NSDate

前端之家收集整理的这篇文章主要介绍了objective-c – 当前日期和时间 – NSDate前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要显示当前的日期和时间.

我用过 ;

NSDate *currentDateNTime        = [NSDate date];

我想拥有当前的日期和时间(应该显示系统时间而不是GMT时间).
输出应该是NSDate格式而不是NSString.

例如;

NSDate *currentDateNTime        = [NSDate date];
// Do the processing....

NSDate *nowDateAndTime = .....; // Output should be a NSDate and not a NSString

解决方法

由于所有NSDate都是GMT引用,您可能想要这样:
(不要忘记nowDate不会是实际的当前系统日期时间,但它会“移位”,所以如果你使用NSDateFormatter生成NSString,你会看到错误的日期)
NSDate* currentDate = [NSDate date];
NSTimeZone* currentTimeZone = [NSTimeZone timeZoneWithAbbreviation:@"GMT"];
NSTimeZone* nowTimeZone = [NSTimeZone systemTimeZone];

NSInteger currentGMTOffset = [currentTimeZone secondsFromGMTForDate:currentDate];
NSInteger nowGMTOffset = [nowTimeZone secondsFromGMTForDate:currentDate];

NSTimeInterval interval = nowGMTOffset - currentGMTOffset;
NSDate* nowDate = [[NSDate alloc] initWithTimeInterval:interval sinceDate:currentDate];
原文链接:https://www.f2er.com/c/111296.html

猜你在找的C&C++相关文章