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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T22:19:07+00:00 2026-05-27T22:19:07+00:00

I need to get the latest date from coredata i found a way NSSortDescriptor

  • 0

I need to get the latest date from coredata

i found a way

NSSortDescriptor * sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"date" ascending:NO];
[fetchRequest setSortDescriptors:[NSArray arrayWithObject:sortDescriptor]];

[fetchRequest setFetchLimit:1];

so sort them by date and then pick the first

however can this not be done more optimal? this approach looks like a brute force

sort is nlogn, but simple search for the max is n

  • 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-27T22:19:08+00:00Added an answer on May 27, 2026 at 10:19 pm

    You can actually ask SQL for just that value, not the object with that value:

    NSExpression *date = [NSExpression expressionForKeyPath:@"date"];
    NSExpression *maxDate = [NSExpression expressionForFunction:@"max:"
        arguments:[NSArray arrayWithObject:maxDate]];
    NSExpressionDescription *d = [[[NSExpressionDescription alloc] init] autorelease];
    [d setName:@"maxDate"];
    [d setExpression:maxSalaryExpression];
    [d setExpressionResultType:NSDateAttributeType];
    
    [request setPropertiesToFetch:[NSArray arrayWithObject:d]];
    
    NSError *error = nil;
    NSArray *objects = [managedObjectContext executeFetchRequest:request error:&error];
    if (objects == nil) {
        // Handle the error.
    } else {
        if (0 < [objects count]) {
            NSLog(@"Maximum date: %@", [[objects objectAtIndex:0] valueForKey:@"maxDate"]);
        }
    }
    

    This is described in more detail under Fetching Managed Objects -> Fetching Specific Values in the CoreData documentation.

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

Sidebar

Related Questions

i need to get the latest order (from our custon admin panel). here's my
I need to get the contents from this URL http://google.fr/ok in a NSString can
I need to get the latest X rows. So I do something like SELECT
I Have a table which holds date but I need to know the latest
I want to get the remaining/latest balance of the cardnumber from the rows. Below
I need to get data from a XML file from Node1>Node2 Filter data to
I need to pull some data from the API. It returns the GET in
I need to find the max(n.LastEdited) (Latest Editing Date) for my whole table and
I need get the id of an images which is place inside a datatemplate..
Just need get some vals located in application.ini(main ini) in the Controller plugin I

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.