gpt4 book ai didi

iphone - 如何获取 iPhone 项目的 UTC 时间?

转载 作者:行者123 更新时间:2023-12-03 21:15:59 25 4
gpt4 key购买 nike

如何在 iPhone 开发中获取我所在国家/地区的 UTC 时间?

最佳答案

这是代码,当你想设置时区和日期格式时,只需调用下面的方法即可。

-(void)setDateFormat
{
NsDate myDate = [NSDate date];//here it returns current date of device.
//now set the timeZone and set the Date format to this date as you want.
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
NSTimeZone *timeZone = [NSTimeZone timeZoneWithName:@"UTC"];
[dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
[dateFormatter setTimeZone:timeZone];
NSString *newDate = [dateFormatter stringFromDate:myDate];
// here you have new Date with desired format and TimeZone.
}

关于iphone - 如何获取 iPhone 项目的 UTC 时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13342850/

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