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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T18:39:35+00:00 2026-05-29T18:39:35+00:00

I am trying to divide a NSMutableDictionary into two NSMutableArrays on comparing one keyValue

  • 0

I am trying to divide a NSMutableDictionary into two NSMutableArrays on comparing one keyValue in NSMutableDictionary,

example:My NSMutableDictionary

    [
        {
            "0": "87",
            "1": "13270690451",
            "2": "Delhi night's",
            "3": "2106",
            "4": ":)",
            "5": "Kunwar",
            "6": "28.601736",
            "7": "77.159178",
            "8": "16.107459108715",
            "timeleft": "87",
            "imageurl": "13270690451",
            "beep": "Delhi night's",
            "beepid": "2106",
            "beepdescription": ":)",
            "username": "Kunwar",
            "Lat": "28.601736",
            "long": "77.159178",
            "distance": "16.107459108715"
        },
        {
            "0": "87",
            "1": "13278710651",
            "2": "Delhi IT hub",
            "3": "2145",
            "4": "LPT certification centre",
            "5": "Kunwar",
            "6": "28.491764",
            "7": "77.082712",
            "8": "2005.6281723630008",
            "timeleft": "87",
            "imageurl": "13278710651",
            "beep": "Delhi IT hub",
            "beepid": "2145",
            "beepdescription": "LPT certification centre",
            "username": "Kunwar",
            "Lat": "28.491764",
            "long": "77.082712",
            "distance": "2005.6281723630008"
       }
]

i want make two seperate mutablearray if “distance”: “2005.6281723630008” in dictionary is less than 500 add to mutable array1 other wise add to mutable array2

  • 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-29T18:39:37+00:00Added an answer on May 29, 2026 at 6:39 pm

    Something like this?

    NSArray *sortedArray = [originalArray sortedArrayUsingComparator:^(id a, id b) {
        float fa = [[(NSDictionary*)a objectForKey:@"distance"] floatValue];
        float fb = [[(NSDictionary*)b objectForKey:@"distance"] floatValue];
        NSNumber *first = [NSNumber numberWithFloat:fa];
        NSNumber *second = [NSNumber numberWithFloat:fb];
    
        return [first compare:second];
    }];
    
    NSMutableArray *arr1 = [[NSMutableArray alloc] init];
    NSMutableArray *arr2 = [[NSMutableArray alloc] init];
    
    for (NSDictionary *dic in sortedArray) {
        if ([[dic objectForKey:@"distance"] floatValue] < 500.0f) {
            [arr1 addObject:dic];
        } else {
            [arr2 addObject:dic];
        }
    }
    originalArray = nil;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to divide a string into parts for reading Roman numerals. For example
I am trying to use php's explode to divide a string into two. However
I'm having an issue trying to divide two decimals and then display the result.
I'm trying to divide up my web.config into multiple config files so that when
I'm trying to divide a file into an x ammount of blocks of size
I'm trying to divide a line into multiple segments. Because of that i've created
I'm trying to divide a screen into 2 sections. The above section is a
I am trying to divide two variables in Jquery as follows: var image_width =
I'm trying divide two numbers in assembly. I'm working out of the Irvine assembly
I am trying to divide two numbers, a numerator N by a divisor D.

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.