gpt4 book ai didi

iphone - 在 UIDatePicker iphone 中选择日期时出现问题

转载 作者:行者123 更新时间:2023-12-03 19:44:43 30 4
gpt4 key购买 nike

我在表单中使用 UIDatePicker,但问题是当我选择日期和时间时,文本字段中的时间比选择器中显示的时间晚 5 小时。我读到日期选择器中有一个错误,但我不知道如何解决这个问题。我需要显示墨西哥的时间。我尝试过这样做,但没有任何改变。

datePicker.calendar = [NSCalendar autoupdatingCurrentCalendar];
datePicker.timeZone = [NSTimeZone localTimeZone];
datePicker.locale = [NSLocale currentLocale];

谁能帮我解决这个问题??? XD

谢谢大家!!

最佳答案

如果您尚未使用它,我建议您这样做:

NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setDateStyle:NSDateFormatterMediumStyle];
[df setTimeStyle:NSDateFormatterMediumStyle];

NSString *stringToDisplay = [df stringFromDate:myDateObject];

NSDateFormatter 应该为您处理任何时区问题。您可以阅读更多here.

关于iphone - 在 UIDatePicker iphone 中选择日期时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7042464/

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