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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T05:03:44+00:00 2026-05-27T05:03:44+00:00

Hihi all, I have an NSMutableArray containing various NSDictionary. In each of the NSDictionary,

  • 0

Hihi all,

I have an NSMutableArray containing various NSDictionary. In each of the NSDictionary, I have two key-value-pairs, eg: username and loginDate.

I would need to sort all NSDictionary in this NSMutableArray based on loginDate descending and username ascending.

Just to illustrate in more details:

NSMutableArray (index 0): NSDictionary -> username:"user1", loginDate:20 Dec 2011
NSMutableArray (index 1): NSDictionary -> username:"user2", loginDate:15 Dec 2011
NSMutableArray (index 2): NSDictionary -> username:"user3", loginDate:28 Dec 2011
NSMutableArray (index 3): NSDictionary -> username:"user4", loginDate:28 Dec 2011

After the sorting, the result in the array should be:

NSMutableArray (index 0): NSDictionary -> username:"user3", loginDate:28 Dec 2011
NSMutableArray (index 1): NSDictionary -> username:"user4", loginDate:28 Dec 2011
NSMutableArray (index 2): NSDictionary -> username:"user1", loginDate:20 Dec 2011
NSMutableArray (index 3): NSDictionary -> username:"user2", loginDate:15 Dec 2011

How can I achieve this? Have gone through some of the sortUsingComparator method, can’t figure out a way for this.

  • 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-27T05:03:45+00:00Added an answer on May 27, 2026 at 5:03 am

    Maybe something like this?

    [array sortUsingDescriptors:
     [NSArray arrayWithObjects:
      [[[NSSortDescriptor alloc]
        initWithKey:@"loginDate"
        ascending:NO]
       autorelease],
      [[[NSSortDescriptor alloc]
        initWithKey:@"username"
        ascending:YES]
       autorelease],
      nil]];
    

    If you build for iOS 4 or higher you can even do:

    [array sortUsingDescriptors:
     [NSArray arrayWithObjects:
      [NSSortDescriptor sortDescriptorWithKey:@"loginDate" ascending:NO],
      [NSSortDescriptor sortDescriptorWithKey:@"username" ascending:YES],
      nil]];
    

    This works using the compare: method to compare property key values, that is the value returned by valueForKey:. In the case of NSDictionary it will more or less just call objectForKey: to get the value. There are some special notations like prefixing key name with “@”, see Difference valueforKey objectForKey for more details.

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

Sidebar

Related Questions

Hihi all, I am pretty new in iPhone dev. I have follow some tutorial
Hihi all, I have a fixed row tableView with several TextFields in it for
Hihi all, I have a TextField (the TextField is added into the TableViewCell from
Hihi all, I have implement a mechanism for the above (in the question title),
Hihi all, This could very well be a silly question. I would like to
hihi i have a question that i want to ask about c# and window
Hihi all, after googling around for hours, still stuck with my linq statement. I
Hihi all, I am trying to make use of tabbar control in my iphone
I have a node with some data: <something>Blah blah (Hello World) hihi</something> When I
Can anybody tell me how are exceptions handled in PHP? I have this code

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.