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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T06:58:04+00:00 2026-05-21T06:58:04+00:00

How can I compare the dates only, not the time. I am using NSDateFormatter

  • 0

How can I compare the dates only, not the time. I am using

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"dd-MM-yyyy"];

NSString *tempDate = @"2-2-2012"; //Dynamic Date
NSDate *dateString = [dateFormatter dateFromString:tempDate];
NSLog(@"%@",dateString);

It logs this: 2012-02-01 18:30:00 +0000

NSDate *now = [NSDate date];//Current Date
NSLog(@"%@",now);

It logs this: 2011-04-04 14:49:45 +0000

I want to compare Dynamic date and current date, I don’t need time. I may not using the correct NSDateFormatter. Can anyone of you tell me how to do this? If I am not clear, please let me know.

Suppose I have to strings

date1 = 3-2-2011;
date2 = 4-5-2020;

I want to convert them in date, only after that I can compare them. Its not happening from my date Formatter. Please have a look.

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-21T06:58:05+00:00Added an answer on May 21, 2026 at 6:58 am

    Simplest way is to compare date by converting it into string.

    Sample Code is as shown below:

        //Current Date
        NSDate *date = [NSDate date];
    NSDateFormatter *formatter = nil;
    formatter=[[NSDateFormatter alloc] init];
     [formatter setDateFormat:@"yyyy-MM-dd"];
    
    NSString *dateString = [formatter stringFromDate:date];
    [formatter release];
    
       //Other Date say date2 is of type NSDate again
       NSString *date2String = [formatter stringFromDate:date2];
    
      //Comparison of Two dates by its conversion into string as below
     if([date2String isEqualToString:dateString])
     {
           //Your logic if dates are Equal
     }
     else if(![date2String isEqualToString:dateString])
     {
            //Your Logic if dates are Different
     }
    

    EDIT:

    Checkout this link.

    Comparing dates

    http://www.iphonedevsdk.com/forum/iphone-sdk-development/64625-how-compare-2-dates.html

    Hope This Helps You. 🙂

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

Sidebar

Related Questions

Can someone suggest a way to compare the values of two dates greater than,
Using CFML (ColdFusion Markup Langauge, aka ColdFusion), how can you compare if two single
It seems I can't compare 2 date values with time. When I compare just
How can I compare strings in a case insensitive way in Python? I would
Do you have any experience with T4 and T4 Editor ? Can you compare
can i somehow compare two numbers in regex? i want regex that is correct
I am using SqlDataSource to pull in information from a table such that only
Background this post explains how one can consume extension methods in Powershell http://community.bartdesmet.net/blogs/bart/archive/2007/09/06/extension-methods-in-windows-powershell.aspx Compare
Assume you have some objects which have several fields they can be compared by:
How cheap can MySQL be compared to MS SQL when you have tons of

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.