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

  • Home
  • SEARCH
  • 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 6364375
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:09:20+00:00 2026-05-25T00:09:20+00:00

I am looking at using -[NSDateFormatter setDoesRelativeDateFormatting:] to present dates as Today or Yesterday.

  • 0

I am looking at using -[NSDateFormatter setDoesRelativeDateFormatting:] to present dates as “Today” or “Yesterday”. I am only looking at dates in the past but am curious what options I would see localised for the UK.

Just

  • “Today”
  • “Yesterday”

or anything more convoluted like

  • “The day before yesterday”

Are the possible outputs listed anywhere so I can get an idea of the screen space needed to correctly display them?

  • 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-25T00:09:21+00:00Added an answer on May 25, 2026 at 12:09 am

    Yes. They are listed in your console window when you run the following program:

    #import <Foundation/Foundation.h>
    
    int main(int argc, const char * argv[])
    {
    
        @autoreleasepool {
    
            NSDateFormatter * formatter = [[NSDateFormatter  alloc] init];
            [formatter setDateStyle:NSDateFormatterFullStyle];
            [formatter setDoesRelativeDateFormatting:YES];
    
            NSCalendar * cal = [[NSLocale currentLocale] objectForKey:NSLocaleCalendar];
            NSDateComponents * minusOneDay = [[NSDateComponents alloc] init];
            [minusOneDay setDay:-1];
            NSDate * today = [NSDate date];
            NSDate * date = [NSDate date];
    
            while( 1 > [[cal components:NSYearCalendarUnit fromDate:date toDate:today options:0] year] ){
    
                NSLog(@"%@", [formatter stringFromDate:date]);
                date = [cal dateByAddingComponents:minusOneDay
                                            toDate:date
                                           options:0];
            }
    
        }
        return 0;
    }
    

    In my locale, the list seems to just be “Tomorrow”, “Today”, and “Yesterday”.

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

Sidebar

Related Questions

I have been looking at using TDD and implementing proper testing (only just started
I'm looking at using ASP.NET for a new SaaS service, but for the love
I am looking into using a wiki (prefer mediawiki, but not a req.) as
We are looking into using the JdbcTemplate for accessing the DB - but we
I'm looking at using ASP.NET MVC for a current project but I have some
I am looking into using only a ddl to run my query, not a
I'm looking at using doctrine for an application I'm working on - but after
I am looking into using High Charts, but I want to populate the data
Looking at using a template system for a new project, it's only a small
I looking at using Javascript server side and took a look at persevere/pintura but

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.