Where can I find a list of timezones?

IosNstimezone

Ios Problem Overview


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

[NSTimeZone timeZoneWithName:@"US/Eastern"];

Ios Solutions


Solution 1 - Ios

I found solution.

NSLog(@"%@", [NSTimeZone knownTimeZoneNames]);

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionVoloda2View Question on Stackoverflow
Solution 1 - IosVoloda2View Answer on Stackoverflow