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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T12:31:33+00:00 2026-06-17T12:31:33+00:00

I have two NSMutableArrays with NSString and NSNumber objects, more specific: NSMutableArray * points;

  • 0

I have two NSMutableArrays with NSString and NSNumber objects, more specific:

NSMutableArray * points; // NSNumber objects
NSMutableArray * players; //NSString objects

and i need to sort both of them according the objects of points. I try this Order two NSMutableArrays based on one but didn’t help because of NSArray. I need to do this in NSMutableArrays. I sort points using this

NSSortDescriptor *highestToLowest = [NSSortDescriptor sortDescriptorWithKey:@"self" ascending:NO];
[points sortUsingDescriptors:[NSArray arrayWithObject:highestToLowest]];
  • 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-17T12:31:33+00:00Added an answer on June 17, 2026 at 12:31 pm

    I think you should introduce a Player Class

    @interface Player : NSObject
    @property(strong) NSString *name;
    @property(strong) NSNumber *points;
    @end
    

    Instead of keeping the informations in seperated arrays, you would now have a Player object for each player and keep the point inside. Now put all the players in an array, that you can sort easily.

    [players sortUsingComparator: ^(Player *p1, Player *p2){
        if (p1.points < p2.points)
            return NSOrderedAscending;   
        else if(p1.points > p2.points)
            return NSOrderedDescending 
        return NSOrderedSame;
    }];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two arrays, both full of NSString objects like this: NSMutableArray *titles =
I have two NSMutableArrays: NSMutableArray* currentMessages NSMutableArray* items I am trying to copy the
I have two NSMutableArray: arrayone and arraytwo arrayone and arraytwo are full of objects,
I have an iOS app that stores two NSMutableArray 's as objects in NSUserDefaults
I have two update panels on a page. And I want to update both
Possible Duplicate: deep copy NSMutableArray in Objective-C ? I have two arrays of length
I have two NSMutableArray 's [ nowEvents and todayEvents ] with a list of
I have two arrays, an NSMutableArray and an NSArray. The NSMutableArray is the store,
I have an array with two blank characters as follows: shuffleArray = [[NSMutableArray alloc]
I have an NSMutableArray that contains objects of type Person. The Person object contains

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.