tags:

views:

37

answers:

1

I'd like to do some timezone calculation, using the following API:

NSTimeZone *some_time_zone = [NSTimeZone timeZoneWithAbbreviation:name];

however, I am not sure where to find the supported list of abbreviation names. For example, what is the name for the timezone of Siena Italy?

+2  A: 

Try [NSTimeZone abbreviationDictionary] or [NSTimeZone knownTimeZoneNames].

Paul Lynch