If I want to get the time zone for a specific location I could search in the array:
NSArray * timeZoneNames = [NSTimeZone knownTimeZoneNames];
But what if the timezone for a specific place that has no representation in this list? What can I do than?
For example if I search for 'Munich' but actually wanted to have the correct timezone which is 'Europe/Berlin'?
I haven't found any answer for this problem.