Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1041305
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T15:19:57+00:00 2026-05-16T15:19:57+00:00

Ok, I am not sure how to ask this question so that it can

  • 0

Ok, I am not sure how to ask this question so that it can be understood…

I need to store some schedules on a server (Ruby on Rails) from a iPhone. On the iPhone device the time is relative to the device timezone settings, but on the server I need to store the data in the servers local timezone correctly so that the scheduled event will be fired at the correct time.

My idea was this:
– Convert iPhone time to UTC timezone time, and send to server
– On server, read all stored timestamps as UTC timezone
– For data received from server, convert from UTC timezone time to local timezone time

Here is my code to convert to UTC time:

// First the NSDateformatter
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    NSLocale *enUSPOSIXLocale = [[[NSLocale alloc] initWithLocaleIdentifier:@"en_US_POSIX"] autorelease];
    [dateFormatter setLocale:enUSPOSIXLocale];
    [dateFormatter setDateFormat:@"yyyy'-'MM'-'dd'T'HH':'mm':'ss'Z'"];
    [dateFormatter setTimeZone:[NSTimeZone timeZoneWithName:@"UTC"]];

// Now the conversion from local timezone to UTC
    NSTimeZone *srcTimeZone = [NSTimeZone timeZoneWithAbbreviation:@"UTC"];
    NSTimeZone *destTimeZone = [NSTimeZone systemTimeZone];
    NSInteger sourceGMTOffset = [srcTimeZone secondsFromGMTForDate:srcDate];
    NSInteger destinationGMTOffset = [destTimeZone secondsFromGMTForDate:srcDate];
    NSTimeInterval interval = destinationGMTOffset - sourceGMTOffset;
    NSDate *destDate = [[[NSDate alloc] initWithTimeInterval:interval sinceDate:srcDate] autorelease];

The problem is, that if I try and change timezone on my iPhone in between two posts to the server, there is a time difference, so something is wrong.

So my question(s) is:
1) Is this a good approach?
2) What is wrong with my code?

Thank you
Søren

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T15:19:58+00:00Added an answer on May 16, 2026 at 3:19 pm

    You shouldn’t be fiddling with time zones except for the UI.

    Instead, you should save all you times using timeIntervalSinceReferenceDate which is the NSDate primitive method that returns the number of elapsed seconds, to the microsecond, that have elapsed since 1 January 2001, GMT and the current GMT date and time. Save that number to the server and then you can convert it to dates with timezones as needed for display.

    Data and time programming is deceptively complex. Keep everything as simple and fixed as possible in the core logic.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm not exactly sure how to ask this question really, and I'm no where
I'm not sure how to ask this question, but here goes... I am rendering
I am not sure that this is the right place for this question so
Not sure how to ask a followup on SO, but this is in reference
I'm not sure how to ask the question, for I don't know what I
Not sure if the title is quite right for the question but I can't
Not sure exactly how to word this question ... so edits are welcomed! Anyway
Is there an API (Twitter API does not provide this) that I can use
a simple question but Ive realised im not sure of the answer for this
Not sure if this is possible or if I'm expressing correctly what I'm looking

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.