views:

412

answers:

1

My question is simple. I have the GPS coordinates of a place and I need to know, in what time zone (and daylight saving settings) is on that place. Is any easy solution for this problem in objective c?

+1  A: 

It doesn't look like the MKReverseGeocoder class added in MapKit with 3.0 will give you such information, unfortunately. That might make for a good Radar enhancement request, eh? (http://bugreporter.apple.com)

However, with a quick Google search, I found http://www.earthtools.org/webservices.htm#timezone - it appears you could query that and get a nice XML result back. Just be sure to obey the usage restrictions listed at the top of that page.

Sbrocket