iphone - secretario - abreviaturas y siglas
¿Dónde puedo obtener una lista de abreviaturas para timeZoneWithAbbreviation? (3)
Código
NSLog(@"timezones: %@", [NSTimeZone abbreviationDictionary]);
Salida
timezones: {
ADT = "America/Halifax";
AKDT = "America/Juneau";
AKST = "America/Juneau";
ART = "America/Argentina/Buenos_Aires";
AST = "America/Halifax";
BDT = "Asia/Dhaka";
BRST = "America/Sao_Paulo";
BRT = "America/Sao_Paulo";
BST = "Europe/London";
CAT = "Africa/Harare";
CDT = "America/Chicago";
CEST = "Europe/Paris";
CET = "Europe/Paris";
CLST = "America/Santiago";
CLT = "America/Santiago";
COT = "America/Bogota";
CST = "America/Chicago";
EAT = "Africa/Addis_Ababa";
EDT = "America/New_York";
EEST = "Europe/Istanbul";
EET = "Europe/Istanbul";
EST = "America/New_York";
GMT = GMT;
GST = "Asia/Dubai";
HKT = "Asia/Hong_Kong";
HST = "Pacific/Honolulu";
ICT = "Asia/Bangkok";
IRST = "Asia/Tehran";
IST = "Asia/Calcutta";
JST = "Asia/Tokyo";
KST = "Asia/Seoul";
MDT = "America/Denver";
MSD = "Europe/Moscow";
MSK = "Europe/Moscow";
MST = "America/Denver";
NZDT = "Pacific/Auckland";
NZST = "Pacific/Auckland";
PDT = "America/Los_Angeles";
PET = "America/Lima";
PHT = "Asia/Manila";
PKT = "Asia/Karachi";
PST = "America/Los_Angeles";
SGT = "Asia/Singapore";
UTC = UTC;
WAT = "Africa/Lagos";
WEST = "Europe/Lisbon";
WET = "Europe/Lisbon";
WIT = "Asia/Jakarta";
}
Me gustaría hacer un cálculo de zona horaria, utilizando la siguiente API:
NSTimeZone *some_time_zone = [NSTimeZone timeZoneWithAbbreviation:name];
sin embargo, no estoy seguro de dónde encontrar la lista de nombres abbreviation
admitidos. Por ejemplo, ¿cuál es el name
de la zona horaria de Siena Italia ?
Pruebe [NSTimeZone abbreviationDictionary]
o [NSTimeZone knownTimeZoneNames]
.
Swift 3.0:
print("/(NSTimeZone.abbreviationDictionary)")