Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting an array of a property from an object array

I need to extract an array of a single property from a custom object array. eg.

@interface MyClass : NSObject 
{
    int sampleNumber;
    NSString *sampleName;
}

I have an array of MyClass instances called myArray. I want to then get an array of the sampleName strings. Is there a way to do it without stepping through the whole array like this:

NSMutableArray *stringArray;

for (MyClass *thisInstance in myArray) 
{    
    [stringArray addObject:thisInstance.sampleName];
}

I attempted to search for a similar question in Objective-C but found it only in the PHP and LINQ sections.

like image 463
cone Avatar asked Feb 24 '26 19:02

cone


1 Answers

Use Key-Value Coding:

NSArray *stringArray = [myArray valueForKey:@"sampleName"];

Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!