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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T10:09:40+00:00 2026-05-24T10:09:40+00:00

What I would like to achieve is: 1. Grab the NSStrings from all the

  • 0

What I would like to achieve is:
1. Grab the NSStrings from all the NSDictionaries from my NSArray (Only one NSString per NSDictionary)
2. Then sort all the NSStrings so that all the Names are sorted alphabetically.

For example:
Say there is Mark, Nick, and Rob. There are 6 NSDictionaries in my array (Each player having 2 nsdictionaries). So it would look like this (Randomized):
Mark, Rob, Nick, Nick, Rob, Mark

I want to sort it like this:
Mark, Mark, Nick, Nick, Rob, Rob

Is this possible? How would I do this?

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-24T10:09:41+00:00Added an answer on May 24, 2026 at 10:09 am

    What you first need is an array of the names. Let’s assume that “dictionaryArray” is the name of your array of dictionaries, and that “name” is one of the keys in each of your dictionaries:

    NSArray *names = [dictionaryArray valueForKey:@"name"];
    

    Next, you sort this array. In this particular example, you’re actually producing a sorted immutable copy of it:

    NSArray *sortedNames = [names sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)];
    

    If instead you wanted a mutable array to sort, after creating the array “names,” you could make a mutable version of it:

    NSMutableArray *mutableNames = [NSMutableArray arrayWithArray:names];
    

    And then you could sort it in place with:

    [mutableNames sortUsingSelector:@selector(caseInsensitiveCompare:)];
    

    Good luck to you in your endeavors.

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

Sidebar

Related Questions

I would like to achieve the following: all the workflows created should have the
I would like to achieve SELECT @param1, @param2, @param3, t.field1, sum(t.amount) FROM table t
I would like to achieve something like this: SELECT col1,col2-(SELECT foo FROM table1) FROM
I would like to achieve something very similar to Microsoft Access query designer -
I would like to achieve the following: I want a free Application Lifecycle Management
I would like to achieve the following: On homepage load, display modal box Within
I would like to achieve something similar to how scala defines Map as both
I would like to achieve this functionality. <p:column> <p:commandLink value=prihlasit oncomplete=dlg.show(); action=#{signForProjectBean.setProjectForDetail(item)} /> </p:column>
I would like to achieve the following, I need to generate report for multiple
What I would like to achieve here is a user selects an operator, e.g.

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.