5

How to get list of timezones in iOS, like we get on the time of registration of web apps, like shown in this pic?

Steve Benett
  • 12,843
  • 7
  • 59
  • 79
Deepak
  • 141
  • 1
  • 5

1 Answers1

9

You just need to write

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

and you will get all the TimeZone name and abbreviation of name.

iPatel
  • 46,010
  • 16
  • 115
  • 137