I have an NSArray
of unknown items. I know there will always be more than 10 items.
I would like to assign all but the first 10 items to an NSString
.
Something like:
NSString *itemString = (NSString*)[itemArray StartingIndex:10];
Is there a simple efficient way without iteration to accomplish this?
Thanks!