New to Cocoa, and seem to be missing something.
What is the most elegant/idiomatic way to obtain the first x elements of an NSArray as another N
NSArray
N
In Swift 3 you can use this:
let smallArray = largeArray.prefix(10)