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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T23:24:42+00:00 2026-06-07T23:24:42+00:00

I have a date in my application which has this format : MMM dd,

  • 0

I have a date in my application which has this format :

"MMM dd, yyyy hh:mm:ss a"

The user chooses a day from a picker and the date is always converted to this format. From this format how can i get the date after exactly 24 hours?

For example if the date is Mon 24 , 2012 17:44:33 i need the code to transform it to Tue 25 , 2012 17:44:33.

  • 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-07T23:24:44+00:00Added an answer on June 7, 2026 at 11:24 pm

    Use the following code to create a NSDate from your string:

    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setTimeZone:[NSTimeZone localTimeZone]];
    [dateFormatter setCalendar:[NSCalendar currentCalendar]];
    [dateFormatter setDateFormat:<FORMAT_OF_DATE_STRING>];
    NSDate *date = [dateFormatter dateFromString:<DATE_STRING>];
    [dateFormatter release];
    

    Use the following code to add days to a NSDate:

        NSDate *today =<YOUR_DATE>        
        NSCalendar *gregorian = [[NSCalendar alloc]
                                 initWithCalendarIdentifier:NSGregorianCalendar];
        /*
         Create a date components to represent the number of days to add to the current date.         
         The weekday value for Sunday in the Gregorian calendar is 1, so add 1 from the number of days to subtract from the date in question.  (If today is Sunday, add 0 days.)    
         */
        NSDateComponents *componentsToAdd = [[NSDateComponents alloc] init];
    
        if(day<7)
        {
           [componentsToAdd setDay: day];
        }
    
        NSDate *calculateDay = [gregorian dateByAddingComponents:componentsToAdd
                                                          toDate:today options:0];
    

    Happy coding!

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

Sidebar

Related Questions

Our product has several user-defined settings, which to date have been stored using the
We have an application parsing date/time values in the following format: 2009-10-10 09:19:12.124 2009-10-10
Is it possible to customize a django application to have accept localized date format
I have an application that passes in java.util.Date. I want to check whether this
I have an application that has a UILabel displaying the current date and time,
I have an application with existing data, that has Zero in the date column.
I have a web application that has a dynamic javascript calendar, which allows users
I have a application which has 6 count down timers. I want the application
I have a console based application which pulls files from a database and outputs
I have a asp.net web application which has a number of versions deployed on

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.