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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T14:42:39+00:00 2026-06-04T14:42:39+00:00

I want to get some objects from array contains objects where one of objects

  • 0

I want to get some objects from array contains objects where one of objects property satisfy the condition

Like in c#

example :

NSMutablearray * coursesinfo ;

this array contain more than 30 courses

course is object on of its property is finalgrade

i want to get all courses where final grade < 100

can i do this in objective -c like c# ? and how?

  • 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-04T14:42:40+00:00Added an answer on June 4, 2026 at 2:42 pm

    the where statement is like using a predicate in cocoa/cocoa touch. here is an example, where I have an array of image file names from a directory and I am looking for the base file name. The indexesOfObjectsWithOptions: method returns a set of Indices that pass the specific test. NSEnumerationConcurrent utilizes a concurrent queue to take advantage of multiple cores, if present.

    NSIndexSet *indexSet=[allImageURLs indexesOfObjectsWithOptions:NSEnumerationConcurrent passingTest:^BOOL(id obj, NSUInteger idx, BOOL *stop) {
        BOOL match=NO;
        NSRange twoXRange=[((NSURL *)obj).absoluteString rangeOfString:@"@2x"];
        NSRange iPhoneRange=[((NSURL *)obj).absoluteString rangeOfString:@"~ipad"];
        if (twoXRange.location==NSNotFound && iPhoneRange.location==NSNotFound) {
            match=YES;
        }
        return  match;
    }];
    
    self.imageURLs=[allImageURLs objectsAtIndexes: indexSet];
    

    for your particular case I would do the following:

    NSIndexSet *theSet=[coursesinfo indexesOfObjectsWithOptions:NSEnumerationConcurrent passingTest:^BOOL(id obj, NSUInteger idx, BOOL *stop) {
        BOOL match=NO;
    
        if( obj.finalGrade<100 ){
           match=YES;
        }
        return match;
    }];
    
    NSArray *courses=[coursesinfo objectsAtIndexes: theSet];
    

    Good luck!

    t

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

Sidebar

Related Questions

I have one problem , I want to get some data from XML file
I want to get some images from a movie and make a gif. What
I want to get some text from a PHP page into an Android application.
I want to get some images from a flash webpage and I got the
I am using http://lite.facebook.com And i want to get some data from my account.
I get back a json object from Facebook which contains some friends information. Some
Now I want to transform a Array from object_c to javascript, just like label1
So, the question is: I get some notifications I don't want to get. But
my question is , I want to get some short and smart ideas to
I want to get myself into programming some serious GUI based applications, but when

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.