标签: ios timezone nsdate nsdateformatter
我是IOS开发的新手。我从API接收日期字符串,并希望将时间设置为用户的当前时区。 dateformatter看起来像:
[dateFormatter setDateFormat:@"yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'SSS'Z'"];
我知道我可以像这样设置时区
[dateFormatter setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0]];
但有没有办法根据用户的当前时区进行设置?