So i ran across an issue with the simulator in checking time between a server in one timezone vs. my current timezone.
When doing something like this:
startDate = [NSDate new]
the time associated with startDate is my timezone(Eastern Time Zone). However, my simulated location of the simulator(lat, lon) is a central time zone. For date/time interval comparisons i have failures in the code because while my lat,lon simulator coordinates are in central timezone, startDate is using my system timezone.
Is there a way to get a proper date/time associated with the simulators simulated location?..like converting the lat,lon to a proper NSDate?