ios – NSDateFormatter不为“z”或“zzz”说明符显示“AsiaKolkata”的时区缩写,只显示GMT偏移量

ios – NSDateFormatter不为“z”或“zzz”说明符显示“AsiaKolkata”的时区缩写,只显示GMT偏移量,第1张

概述在iOS5模拟器和设备上,NSDateFormatter不为“z”或“zzz”说明符显示“Asia / Kolkata”的时区缩写. NSTimeZone *timeZone = [NSTimeZone timeZoneWithName:@"Asia/Kolkata"];NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init 在iOS5模拟器和设备上,NSDateFormatter不为“z”或“zzz”说明符显示“Asia / Kolkata”的时区缩写.
NSTimeZone *timeZone = [NSTimeZone timeZoneWithname:@"Asia/Kolkata"];NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];dateFormatter.dateFormat = @"z"; // or @"zzz"dateFormatter.timeZone = timeZone;NSLog(@"date string: %@",[dateFormatter stringFromDate:[NSDate date]]); // "GMT+05:30",expected "IST"NSLog(@"time zone abbreviation: %@",[timeZone abbreviationForDate:[NSDate date]]); // "IST"

我希望上面的代码输出:

ISTIST

但它输出:

GMT+05:30IST

编辑

将语言环境设置为印度语语言环境似乎没有帮助.

NSLocale *indianEnglishLocale = [[[NSLocale alloc] initWithLocaleIDentifIEr:@"en_IN"] autorelease];NSTimeZone *timeZone = [NSTimeZone timeZoneWithname:@"Asia/Kolkata"];NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];[dateFormatter setLocale:indianEnglishLocale];[dateFormatter setDateFormat:@"z"]; // or @"zzz"[dateFormatter setTimeZone:timeZone];NSLog(@"date string: %@",[timeZone abbreviationForDate:[NSDate date]]); // "IST"

我希望上面的代码输出:

ISTIST

但它输出:

GMT+05:30IST

这是一个错误吗?难道我做错了什么? People have mentioned that NSDateFormatter has bugs,especially when a time zone is specified in the format string. Could this be one of those bugs?

解决方法 从 http://www.cocoabuilder.com/archive/cocoa/310977-nsdateformatter-not-working-on-ios-5.html#311281起

The change in parsing of abbreviated time zone names in iOS 5.0 is a
result of an intentional change in the open-source ICU 4.8 library
(and the open-source CLDR 2.0 data that it uses),a modifIEd version
of which is used to implement some of the NSDateFormatter
functionality.

The issue is this: With the short timezone formats as specifIEd by z
(=zzz) or v (=vvv),there can be a lot of ambiguity. For example,“ET”
for Eastern Time” Could apply to different time zones in many
different regions. To improve formatting and parsing reliability,the
short forms are only used in a locale if the “cu” (commonly used) flag
is set for the locale. Otherwise,only the long forms are used (for
both formatting and parsing).

For the “en” locale (= “en_US”),the cu flag is set for Metazones such
as Alaska,America_Central,America_Eastern,America_Mountain,
America_Pacific,Atlantic,Hawaii_Aleutian,and GMT. It is not set
for Europe_Central.

However,for the “en_GB” locale,the cu flag is set for
Europe_Central.

So a formatter set for short timezone style “z” or “zzz” and locale
“en” or “en_US” will not parse “CEST” or “CET”,but if the locale is
instead set to “en_GB” it will parse those. The “GMT” style will be
parsed by all.

If the formatter is set for the long timezone style “zzzz”,and the
locale is any of “en”,“en_US”,or “en_GB”,then any of the following
will be parsed,because they are unambiguous: “Pacific Daylight Time”
“Central European Summer Time” “Central European Time”

Hope this helps.

Peter Edberg

从http://www.cocoabuilder.com/archive/cocoa/313301-nsdateformatter-not-working-on-ios-5.html#313301开始

Heath,
Yes,you are correct,for the example you provIDed above,
[dateFormatter stringFromDate:[NSDate date]] should use the short
time zone name “IST”. The fact that it does not is due to a deficIEncy
in the “en_IN” locale data in the versions of CLDR data used by ICU in
the current OSX and iOS releases (CLDR 1.9.1 and 2.0 respectively).
The “en_IN” locale in those CLDR versions dID not overrIDe or
supplement any of the timezone name data from the base “en” locale,
whose default content is for “en_US”.

This is already fixed for the CLDR 21 release coming in a few days.
That is being incorporated into ICU 49 which will be picked up in
future OSX and iOS releases.

Peter E

– -编辑 – –

根据formats及其rules的unicode文档,V格式可能是更好的选择:

…the same format as z,except that Metazone timezone abbreviations are to be displayed if available,regardless of the value of [the] commonlyUsed [flag].

就我而言,对于以下代码:

NSLocale *indianEnglishLocale = [[[NSLocale alloc] initWithLocaleIDentifIEr:@"en_IN"] autorelease];NSTimeZone *timeZone = [NSTimeZone timeZoneWithname:@"Asia/Kolkata"];NSDateFormatter *dateFormatter = [[[NSDateFormatter alloc] init] autorelease];[dateFormatter setLocale:indianEnglishLocale];[dateFormatter setDateFormat:@"V"];[dateFormatter setTimeZone:timeZone];NSLog(@"V date string: %@",[dateFormatter stringFromDate:[NSDate date]]);

我收到以下输出:

V date string: IST
总结

以上是内存溢出为你收集整理的ios – NSDateFormatter不为“z”或“zzz”说明符显示“Asia / Kolkata”的时区缩写,只显示GMT偏移量全部内容,希望文章能够帮你解决ios – NSDateFormatter不为“z”或“zzz”说明符显示“Asia / Kolkata”的时区缩写,只显示GMT偏移量所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://www.outofmemory.cn/web/1098189.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存