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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T14:48:18+00:00 2026-05-26T14:48:18+00:00

I am having some issues with the following function. I have a dictionary with

  • 0

I am having some issues with the following function. I have a dictionary with an array of date strings. I would like to loop through them and generate an NSDate object for each string. An example of the date string would be 20Z01NOV2011, where 20Z indicates 8:00 Zulu time, followed by the day,month, year.To make the date extraction easier, I remove the Z and insert a space.
The date formatter seems to work fine the first loop iteration, however fails on the subsequent iterations, however the input string format seems to be fine. Im not sure if there is a memory issue, and the string or formatter needs to be cleared, but I could use a hand correcting it.

    NSDateFormatter *timeFormatter = [[NSDateFormatter alloc] init];
    [timeFormatter setDateFormat:@"HH ddMMMyyyy"];
    NSMutableArray *tempDates = [[NSMutableArray alloc] initWithCapacity:[[dict objectForKey:@"time"] count]];
    NSMutableArray *tempDateStrings = [[NSMutableArray alloc] initWithCapacity:[[dict objectForKey:@"time"] count]];

    for (int i=0; i < [[dict objectForKey:@"time"] count]; ++i) {
        NSString *dateString = [[[dict objectForKey:@"time"] objectAtIndex:i] stringByReplacingOccurrencesOfString:@"Z" withString:@" "];
        NSDate *date = [timeFormatter dateFromString:dateString];
        [tempDates addObject:date];
        [timeFormatter setDateFormat:@"EEE h:mm a"];
        [tempDateStrings addObject:[timeFormatter stringFromDate:date]];

    }

    [dict setObject:tempDateStrings forKey:@"dateStrings"];
    [dict setObject:tempDates forKey:@"dateObjects"];
  • 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-26T14:48:19+00:00Added an answer on May 26, 2026 at 2:48 pm

    Side note, I think you should remove the index from the iteration entirely:

    Also, you’re resetting the formatter inside the loop…

    for (NSString *dateString in [dict objectForKey:@"time"]) {
        dateString = [dateString stringByReplacingOccurrencesOfString:@"Z" withString:@" "];
        NSDate *date = [timeFormatter dateFromString:dateString];
        [tempDates addObject:date];
        [timeFormatter setDateFormat:@"EEE h:mm a"]; // RESETING DATE FORMAT - SECOND ITERATION WILL FAIL
        [tempDateStrings addObject:[timeFormatter stringFromDate:date]];
    
    }
    

    I suspect you want two formatters, ONE to read the string input, and a SECOND to output the value into the format you like.

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

Sidebar

Related Questions

I have been having some issues with LINQ-To-SQL around memory usage. I'm using it
I have been having some issues retrieving JSON data from a WCF service application
I have the following JavaScript and I am having issues within using setTimeout ,
I'm having some trouble figuring this out. I have the following CSV string hello
Having some issues getting my head around the differences between UTF-8, UTF-16, ASCII and
Having some issues with the ... in ObjectiveC. I'm basically wrapping a method and
We've been having some issues with a SharePoint instance in a test environment. Thankfully
I'm having some issues with producing an int matrix without creating memory leaks. I
We are having some issues getting SharePoint to work as we want it to.
I am having some issues with using the OrderBy extension method on a LINQ

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.