I have a time in EST timezone, it is done using the NOW() function on the mysql server. Because my server is located in EST, the time stored is in EST. When I retrieve it from my app on the iPhone, I need to display it in the correct time zone of the user. How do I do that?
|
up vote
2
down vote
favorite
15
|
|||
|
|
|
up vote
12
down vote
accepted
|
To get a list of available timezones on your system, use I don't know in which format your MySQL date comes in, but assuming it is a string, you should use
You have to set the formatter's date format according to the format of your mysql date string. If you need a reference for the format string syntax, see Unicode Date Format Patterns. Hope this helps. |
||
|
|
|
up vote
1
down vote
|
I think it depends on what you mean by EST - if you mean East Coast US, then in general, that is 5 hours behind UTC (but not accounting for daylight saving), which should give you 04:00 EST. Try to avoid using abbreviations where possible, as they are ambiguous, e.g. EST is the abbreviation for both America/Detroit and Australia/Sydney. Using NSTimeZone initWithName will give more precise results. The Chronos Time Zone Repository provides a nicely readable XML timezone database that really helps in understanding how time zones work (it's all rather messy and changeable). |
||
|
|
|
up vote
0
down vote
|
Use |
||||
|
|
up vote
0
down vote
|
When I set my source timezone to "UTC" and destination to "EST", how come it subtracts the time and doesn't add. For example 5:00 UTC should translate to 9:00 EST. Can someone clarify? |
||
|
|