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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T14:09:07+00:00 2026-05-28T14:09:07+00:00

I am having an NSMutableDictionary with, being filled dynamically. It looks like this: {

  • 0

I am having an NSMutableDictionary with, being filled dynamically. It looks like this:

{
    SomeKey = 6;
    AnotherKey = 2;
    JustAnotherKey = 28;
}

I need to sort this, so it will be like this one:

{
    JustAnotherKey = 28;
    SomeKey = 6;
    AnotherKey = 2;
}

Is there any way to achieve this? Thanks in advance.

  • 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-28T14:09:07+00:00Added an answer on May 28, 2026 at 2:09 pm

    A Dictionary is an unordered set, which means it doesn’t have any order of its elements.So even if you insert the first object as say “one”:”first value”, and then “two”:”second value”, when you iterate over the keys, you might get it in any random order(eg: “two’ and then “one”).

    However, if all you want is the values in sorted order, you can iterate over all the keys, fetch the values and store it in an array, and then sort them.

    NSArray *values=[myDict allValues];
    NSMutableArray *sortedKeys=[[NSMutableArray alloc] init];
    NSArray *sortedValues = [values sortedArrayUsingSelector:@selector(yourSelector)];
    for (val in sortedArray){
       NSString *key=(NSString*)[[myDict allKeysForObject:val] objectAtIndex:0];
       [sortedKeys addObject:key]
    }
    

    This would be starter for getting first the values in sorted order, and then the corresponding keys. (It is not doing any error checks. So beware of OutOfIndex exceptions).

    I am not sure how good would be the efficiency of this code be, coz allKeysForObject would be iterating over all the keys.

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

Sidebar

Related Questions

Having a heckuva time with this one, though I feel I'm missing something obvious.
What I'm trying to achieve is to say, having an XML structure like this:
I am having a NSMutableDictionary . I have to dynamically rename any Key in
I would like to do something like this: #define GETKEY (a) ([NSString stringWithFormat:@%d,a]) NSMutableDictionary
Having programmed through emacs and vi for years and years at this point, I
Having this route: map.foo 'foo/*path', :controller => 'foo', :action => 'index' I have the
Having difficulty articulating this correlated subquery. I have two tables fictitious tables, foo and
I'm sure I'm dense from being new to iOS programming, but, I am having
Is there any 'easy' way of having pure objective-c containers, such as NSMutableDictionary or
I am having the following code: @interface Room : NSObject { @protected NSMutableDictionary* mCustomProperties;

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.