gpt4 book ai didi

mysql - iOS - 将从 mySQL 服务器接收到的日期转换为用户本地时间

转载 作者:行者123 更新时间:2023-11-29 02:32:57 27 4
gpt4 key购买 nike

我有一台服务器,它使用 NOW() 设置时间,将用户之间发送的数据时间存储在 mySQL 数据库中。我正在尝试将时间转换为收件人的本地时间,但运气不佳(我会在存储之前转换时间,但正如我所说,我希望时间是收件人的本地时间,而不是发件人)。日期以字符串形式返回给应用程序,我尝试按如下方式对其进行调整:

NSString *string1 = [[receivedMessages objectAtIndex:thisRow]objectAtIndex:2];
NSDate *messageDate;
NSCalendar* cal = NSCalendar.currentCalendar;
NSTimeZone* tz = cal.timeZone;

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"MM dd yyyy hh:mma"];
[formatter setTimeZone:tz];

messageDate = [formatter dateFromString:string1];

它确实格式化了日期,但不正确。应用收到的日期为:

April 5 2012 5:49AM

转换为:

2012-04-05 04:49:00 +0000

我想知道 xcode 最初是如何计算出日期属于哪个时区的?

实际上,我刚刚使用

再次测试了它
NSTimeZone *pst = [NSTimeZone timeZoneWithAbbreviation:@"PST"];

代替

 NSCalendar* cal = NSCalendar.currentCalendar;
NSTimeZone* tz = cal.timeZone;

它仍然给我时间 2012-04-05 04:49:00 +0000。

有人有什么想法吗?

非常感谢

最佳答案

From the Apple docs , messageDate = [formatter dateFromString:string1]; 将返回一个 NSDate。当您显示结果时,您正在打印一个 NSDate 对象,该对象(我猜)被“字符串化”为 ISO 8601 date。 .这些 NSDate 对象被标准化为绝对时间(没有时区信息)。

获得日期对象后,只需更进一步并格式化输出。我猜你显示的时间是原始时间,所以这很好(dateFromString 将转换为“绝对时间”)。您只需要添加类似 localizedStringFromDate:dateStyle:timeStyle: 的内容即可获取本地时间。

//If this is not in UTC, we don't have any knowledge about
//which tz it is. MUST BE IN UTC.
dateString = "2012-03-12 9:53:23"

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"MM dd yyyy hh:mma"];

NSDate *date = [formatter dateFromString:dateString];

NSString *result = [NSDateFormatter localizedStringFromDate:date dateStyle:NSDateFormatterShortStyle timeStyle:NSDateFormatterShortStyle];

//The result should be in MY timezone automatically.

关于mysql - iOS - 将从 mySQL 服务器接收到的日期转换为用户本地时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10026714/

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