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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T10:46:05+00:00 2026-06-11T10:46:05+00:00

I know how to compare dates.In my case, let Date1 = 2011-10-14 & Date2

  • 0

I know how to compare dates.In my case, let Date1 = 2011-10-14 & Date2 =2011-10-20 .And I want to check if 15th Oct lie between Date1 and Date2.I’m using following codes for this:

if ( [date compare:Date1] == NSOrderedDescending && [date compare:Date2] == NSOrderedAscending) {   
            //write codes

        }

But this will not check if 15th oct lie between 14th and 20th Oct.rather it check for whole date. So, How will I implement this.
Thnx in advance.

  • 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-06-11T10:46:06+00:00Added an answer on June 11, 2026 at 10:46 am

    I hope the following code would help you. Assuming Date1 and Date2 you have,

    NSCalendar *calendar = [NSCalendar currentCalendar];
    NSInteger desiredComponents = (NSDayCalendarUnit | NSMonthCalendarUnit);
    
    
    NSDateComponents *firstComponents = [calendar components:desiredComponents fromDate:Date1];
    NSDateComponents *secondComponents = [calendar components:desiredComponents fromDate:Date2];
    
    NSDate *firstWOYear = [calendar dateFromComponents:firstComponents];
    NSDate *SecondWOYear = [calendar dateFromComponents:secondComponents];
    
    NSComparisonResult result = [firstWOYear compare:SecondWOYear];
    if (result == NSOrderedAscending) {
        //Date1 is before Date2
    } else if (result == NSOrderedDescending) {
        //Date1 is after Date2
    }  else {
        //Date1 is the same day/month as Date2
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to compare date and time. I tried date1.Date.CompareTo(date2.Date) but I donot know
As you all know Compare validators can be used to validate dates and check
How do I compare two dates in Lingo? To be specific, I want to
I want to compare two dates in C# i have tried Toshortdate() but its
How can I compare dates using where statement in sqlite? I don't know how
I would like to know how to compare 2 different strings through a function
I know we can't compare 2 floating point values using ==. We can only
I'd like to know whether there is a way to compare two objects in
I would like to know if there is anyway I can compare two columns
Does anyone know of a tool that can be used to compare (relatively complex)

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.