Top "Nsarray" questions

An immutable, integer-indexed array of objects from the Apple Foundation framework.

How to search an NSSet or NSArray for an object which has an specific value for an specific property?

How to search an NSSet or NSArray for an object which has an specific value for an specific property? Example: …

iphone objective-c nsarray nspredicate nsset
Fastest way to check if an array contains the same objects of another array

The goal is to compare two arrays as and check if they contain the same objects (as fast as possible …

ios objective-c nsarray fast-enumeration
NSArray from NSSet - Do I have to sort it myself?

I've got data in an NSSet, and I need to get it into an NSArray. Do I need to sort …

iphone sorting nsarray nsset
What is the BOOL *stop argument for enumerateObjectsUsingBlock: used for?

I've been using enumerateObjectsUsingBlock: a lot lately for my fast-enumeration needs, and I'm having a hard time understanding the usage …

objective-c cocoa-touch nsarray enumeration fast-enumeration
Finding maximum numeric value in NSArray

I have an NSArray of NSNumbers and want to find the maximum value in the array. Is there any built …

iphone objective-c nsarray
How can I get all values for specific key from each NSDictionary in an NSArray?

I have an array which contains dictionary objects. In each dictionary the key are common. Now I want to get …

objective-c nsarray nsdictionary key-value-coding
How do I add a CGPoint to NSMutableArray?

I want to store my CGPoint to the NSMutable Array, so , I have method like this: [self.points addObject:CGPointMake(…

iphone objective-c nsarray cgpoint
Check if array contains part of a string in Swift?

I have an array containing a number of strings. I have used contains() (see below) to check if a certain …

arrays swift nsarray
Store NSArray In Core Data Sample Code?

I have been searching for some sample code on how to store an NSArray in Core Data for awhile now, …

core-data ios nsarray