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
firstNItems = [items subarrayWithRange:NSMakeRange(0, MIN(n, items.count))];