gpt4 book ai didi

ios - 在 iOS 中将本地时间转换为 EST

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:13:01 25 4
gpt4 key购买 nike

请建议如何将本地时间转换为 EST 时间。我已经用谷歌搜索了,但同样没有得到任何相关答案。

我们将不胜感激。

最佳答案

NSString *str = @"2012-12-17 04:36:25";
NSDateFormatter* gmtDf = [[[NSDateFormatter alloc] init] autorelease];
[gmtDf setTimeZone:[NSTimeZone timeZoneWithName:@"GMT"]];
[gmtDf setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSDate* gmtDate = [gmtDf dateFromString:str];
NSLog(@"%@",gmtDate);

NSDateFormatter* estDf = [[[NSDateFormatter alloc] init] autorelease];
[estDf setTimeZone:[NSTimeZone timeZoneWithName:@"EST"]];
[estDf setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSDate *estDate = [estDf dateFromString:[gmtDf stringFromDate:gmtDate]]; // you can also use str
NSLog(@"%@",estDate);

关于ios - 在 iOS 中将本地时间转换为 EST,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35077971/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com