Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find a list of timezones? [closed]

Tags:

ios

nstimezone

I use timeZoneWithName, but I don't know names of timezones. Where can I find a list of timezones?

[NSTimeZone timeZoneWithName:@"US/Eastern"]; 
like image 606
Voloda2 Avatar asked Mar 18 '12 20:03

Voloda2


People also ask

Are there any unused time zones?

There is one timezone that is completely uninhabited: the UTC-12:00. It covers only two islands: Baker Island and Howland Island that are both uninhabited (owned by US).

How many total times zones are there?

The world is divided into 24 time zones. The course of one day is broken down to the seconds and calculated to define the correct time of a particular place. However, it is not that easy. The 24 time zones, created in accordance to each hour of the day, are theoretically drawn vertically like longitudes over the globe.


1 Answers

I found solution.

NSLog(@"%@", [NSTimeZone knownTimeZoneNames]); 
like image 94
Voloda2 Avatar answered Oct 05 '22 03:10

Voloda2