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 6969101
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T16:32:17+00:00 2026-05-27T16:32:17+00:00

Does the standard framework support time difference formatting and create a format that follows

  • 0

Does the standard framework support time difference formatting and create a format that follows the regional settings? I know I can break it to NSDateComponents but then I will have to append the text and create different language support files myself. I’m wondering that there may be a way to formatting the date and make it follows the regional setting simple and similar to this…

dateFormat = [[[NSDateFormatter alloc] init] autorelease];
[dateFormat setDateStyle:NSDateFormatterMediumStyle]

thanks

  • 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-27T16:32:18+00:00Added an answer on May 27, 2026 at 4:32 pm

    you can turn on relative date formatting by doing:

    NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
    formatter.doesRelativeDateFormatting = YES;
    

    this will give you date strings that look like “Yesterday”, “Today”, “Tomorrow” etc.

    if that’s not enough, then this might be useful: http://zetetic.net/code/nsdate-helper

    that NSDate category didn’t quite work for what i wanted, so i added my own function based on one that was in the category.. seems to work, but no guarantees 😉 of course this only gives you a bit of the information – it doesn’t give you locale formatting etc.

    - (NSUInteger)daysAgoAgainstMidnight2 {
        // get a midnight version of ourself:
        NSDateFormatter *mdf = [[NSDateFormatter alloc] init];
        [mdf setDateFormat:@"yyyy-MM-dd"];
        NSDate *midnightMe = [mdf dateFromString:[mdf stringFromDate:self]];
        NSDate *midnightNow = [mdf dateFromString:[mdf stringFromDate:[NSDate date]]];
    
        NSDateComponents *components = [calendar components:(NSDayCalendarUnit)
                                                   fromDate:midnightMe                                                             toDate:midnightNow
                                                    options:0];
        return [components day];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone know how to implement the standard bubble message that warns users whenever
Does anyone know of an existing open source UI framework that would help with
Does Python have a unit testing framework compatible with the standard xUnit style of
Does a standard or normal diff format exist in SVN or only the unified
Does the standard guarantee that order of equal elements will not change (eh, forgot
Does the C standard support something similar to __func__ for the function arguments' names?
Does anyone know of any 'standard' way to interface with a telephony system (think
Does VS2008 have somewhat C++0x standard support? DUPLICATE Visual Studio support for new C
Does anyone know a standard way to keep alive the http session as long
Does ASP.NET MVC provide a standard validator functionality or do you have to create

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.