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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T22:08:11+00:00 2026-05-18T22:08:11+00:00

I have a core data entity that represents the attributes of a product, as

  • 0

I have a core data entity that represents the attributes of a product, as number, price, etc. The product number is a NSString property and follows the form

X.y

where X is a number variable of digits and Y is one digit. For example. 132.2, 99.4, etc.

I am querying the database to obtain the list of product numbers in order:

The code is like this:

+ (NSArray*)todosOsItens:(NSString *)pName inManagedObjectContext:(NSManagedObjectContext *)context
{

 Product *aProduct = [Product productWithName:pName inManagedObjectContext:context];

 NSArray *all = nil;

 NSFetchRequest *request = [[NSFetchRequest alloc] init];

 request.entity = [NSEntityDescription entityForName:@"Attributes" inManagedObjectContext:context];
 request.predicate = [NSPredicate predicateWithFormat:
       @"(belongsTo == %@)", aProduct];

 [request setResultType:NSDictionaryResultType];
 [request setReturnsDistinctResults:YES];
 [request setPropertiesToFetch:[NSArray arrayWithObject:item]];


 NSSortDescriptor *sortByItem =  [NSSortDescriptor sortDescriptorWithKey:@"ProductNumber" ascending:YES];
 NSArray *sortDescriptors = [NSArray arrayWithObject:sortByItem];
 [request setSortDescriptors:sortDescriptors];

 NSError *error = nil;
 all = [[context executeFetchRequest:request error:&error] mutableCopy];
 [request release];

 return all;
}

but this query is not returning the sorted results. The results are coming on their natural order on the database.

The order I need is ascending as they were real float numbers.

How do I do that?

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

    You can sort this by custom method. you can convert the string into float value then you can easily sort that.

    same as

    NSString *a=@"123.45";
    float f=[a floatValue];
    
    -(NSMutableArray *)sortByfloatvalue:(NSMutableArray *)array
    {
    
       for(int i=0;i<[array count];i++)
        {
            for(int j=i+1;j<[array count];j++)
              {
                  if([[array objectAtIndex:i] floatValue]>[array objectAtIndex:j])
                   {
                     [array exchangeObjectAtIndex:i withObjectAtIndex:j];
                   }
               }
         }
         return array;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an Core Data Entity with a number of attributes, which include amount(float),
I have an entry on a core data entity that represents a NSTimeInterval. First
I have an entry on a core data entity that represents a NSTimeInterval. First
I have a Core Data entity called Item and it represents an item in
I have a core-data object entity with 2 fields - name (a NSString *)
I have a simple core-data entity that has a Boolean attribute called subscribedToNewsletter .
I have a core data model with an entity called clients that is made
I have a core data entity called images that has just 2 fields: imageName
In my Core Data managed object model, I have an entity Foo with a
I have a relationship in a Core Data model that feels like it wants

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.